< prev index next >

src/cpu/arm/vm/bytes_arm.hpp

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

@@ -33,16 +33,10 @@
 #endif
 
 class Bytes: AllStatic {
 
  public:
-  // Returns true if the byte ordering used by Java is different from the native byte ordering
-  // of the underlying machine.
-  static inline bool is_Java_byte_ordering_different() {
-    return VM_LITTLE_ENDIAN != 0;
-  }
-
   static inline u2 get_Java_u2(address p) {
     return (u2(p[0]) << 8) | u2(p[1]);
   }
 
   static inline u4 get_Java_u4(address p) {
< prev index next >