< prev index next >

src/cpu/sparc/vm/assembler_sparc.hpp

Print this page
rev 8978 : imported patch remove_err_msg

@@ -387,11 +387,11 @@
   // x is supposed to fit in a field "nbits" wide
   // and be sign-extended. Check the range.
 
   static void assert_signed_range(intptr_t x, int nbits) {
     assert(nbits == 32 || (-(1 << nbits-1) <= x  &&  x < ( 1 << nbits-1)),
-           err_msg("value out of range: x=" INTPTR_FORMAT ", nbits=%d", x, nbits));
+           "value out of range: x=" INTPTR_FORMAT ", nbits=%d", x, nbits);
   }
 
   static void assert_signed_word_disp_range(intptr_t x, int nbits) {
     assert( (x & 3) == 0, "not word aligned");
     assert_signed_range(x, nbits + 2);
< prev index next >