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 ed615e3 commit 436019bCopy full SHA for 436019b
src/hotspot/share/opto/regmask.hpp
@@ -110,7 +110,12 @@ class RegMask {
110
FORALL_BODY
111
# undef BODY
112
int dummy = 0) {
113
+#if defined(VM_LITTLE_ENDIAN) || !defined(_LP64)
114
# define BODY(I) _RM_I[I] = a##I;
115
+#else
116
+ // We need to swap ints.
117
+# define BODY(I) _RM_I[I ^ 1] = a##I;
118
+#endif
119
120
121
_lwm = 0;
0 commit comments