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 4d62dfa commit 98e6d04Copy full SHA for 98e6d04
src/hotspot/cpu/zero/vm_version_zero.cpp
@@ -137,6 +137,12 @@ void VM_Version::initialize() {
137
#ifdef ASSERT
138
UNSUPPORTED_OPTION(CountCompiledCalls);
139
#endif
140
+
141
+ // Supports 8-byte cmpxchg with compiler built-ins.
142
+ // These built-ins are supposed to be implemented on
143
+ // all platforms (even if not natively), so we claim
144
+ // the support unconditionally.
145
+ _supports_cx8 = true;
146
}
147
148
void VM_Version::initialize_cpu_information(void) {
0 commit comments