We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cafcf4 commit d666726Copy full SHA for d666726
src/hotspot/cpu/aarch64/frame_aarch64.cpp
@@ -683,10 +683,10 @@ intptr_t* frame::real_fp() const {
683
p[frame::name##_offset], #name); \
684
}
685
686
-static __thread uintptr_t nextfp;
687
-static __thread uintptr_t nextpc;
688
-static __thread uintptr_t nextsp;
689
-static __thread RegisterMap *reg_map;
+static THREAD_LOCAL_DECL uintptr_t nextfp;
+static THREAD_LOCAL_DECL uintptr_t nextpc;
+static THREAD_LOCAL_DECL uintptr_t nextsp;
+static THREAD_LOCAL_DECL RegisterMap *reg_map;
690
691
static void printbc(Method *m, intptr_t bcx) {
692
const char *name;
0 commit comments