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 022c60e commit 338eca4Copy full SHA for 338eca4
src/hotspot/os_cpu/linux_aarch64/orderAccess_linux_aarch64.hpp
@@ -30,8 +30,6 @@
30
31
#include "runtime/vm_version.hpp"
32
33
-#define inlasm_isb() asm volatile("isb" : : : "memory")
34
-
35
// Implementation of class OrderAccess.
36
37
inline void OrderAccess::loadload() { acquire(); }
@@ -56,7 +54,7 @@ inline void OrderAccess::fence() {
56
54
}
57
55
58
inline void OrderAccess::cross_modify_fence_impl() {
59
- inlasm_isb();
+ asm volatile("isb" : : : "memory");
60
61
62
#undef inlasm_isb
0 commit comments