< prev index next >

src/share/vm/interpreter/abstractInterpreter.hpp

Print this page
@  rev 12742 : imported patch alpinefixes-copyswapaligned
|

@@ -247,11 +247,11 @@
   // access to stacked values according to type:
   static oop* oop_addr_in_slot(intptr_t* slot_addr) {
     return (oop*) slot_addr;
   }
   static jint* int_addr_in_slot(intptr_t* slot_addr) {
-    if ((int) sizeof(jint) < wordSize && !Bytes::is_Java_byte_ordering_different())
+    if ((int) sizeof(jint) < wordSize && !Endian::is_Java_byte_ordering_different())
       // big-endian LP64
       return (jint*)(slot_addr + 1) - 1;
     else
       return (jint*) slot_addr;
   }
< prev index next >