hotspot/src/share/vm/interpreter/abstractInterpreter.hpp
changeset 46504 38048d4d20e7
parent 42884 05815125c157
child 46608 b0da00b77053
--- a/hotspot/src/share/vm/interpreter/abstractInterpreter.hpp	Fri May 26 09:48:46 2017 -0400
+++ b/hotspot/src/share/vm/interpreter/abstractInterpreter.hpp	Fri May 26 13:47:33 2017 -0700
@@ -249,7 +249,7 @@
     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