hotspot/src/cpu/ppc/vm/bytes_ppc.hpp
changeset 22861 f5c393d456fc
parent 22824 28258dd5cb2e
child 23532 7e8719ce96ea
--- a/hotspot/src/cpu/ppc/vm/bytes_ppc.hpp	Tue Dec 10 14:29:43 2013 +0100
+++ b/hotspot/src/cpu/ppc/vm/bytes_ppc.hpp	Wed Dec 11 00:06:11 2013 +0100
@@ -33,7 +33,7 @@
   // Efficient reading and writing of unaligned unsigned data in platform-specific byte ordering
   // PowerPC needs to check for alignment.
 
-  // can I count on address always being a pointer to an unsigned char? Yes
+  // Can I count on address always being a pointer to an unsigned char? Yes.
 
   // Returns true, if the byte ordering used by Java is different from the nativ byte ordering
   // of the underlying machine. For example, true for Intel x86, False, for Solaris on Sparc.
@@ -141,7 +141,6 @@
     }
   }
 
-
   // Efficient reading and writing of unaligned unsigned data in Java byte ordering (i.e. big-endian ordering)
   // (no byte-order reversal is needed since Power CPUs are big-endian oriented).
   static inline u2   get_Java_u2(address p) { return get_native_u2(p); }