hotspot/src/cpu/x86/vm/assembler_x86.cpp
changeset 33105 294e48b4f704
parent 32727 320855c2baef
child 33129 e0bcbb5015b3
--- a/hotspot/src/cpu/x86/vm/assembler_x86.cpp	Mon Sep 28 15:05:02 2015 +0200
+++ b/hotspot/src/cpu/x86/vm/assembler_x86.cpp	Tue Sep 29 11:02:08 2015 +0200
@@ -733,11 +733,11 @@
     // these asserts are somewhat nonsensical
 #ifndef _LP64
     assert(which == imm_operand || which == disp32_operand,
-           err_msg("which %d is_64_bit %d ip " INTPTR_FORMAT, which, is_64bit, p2i(ip)));
+           "which %d is_64_bit %d ip " INTPTR_FORMAT, which, is_64bit, p2i(ip));
 #else
     assert((which == call32_operand || which == imm_operand) && is_64bit ||
            which == narrow_oop_operand && !is_64bit,
-           err_msg("which %d is_64_bit %d ip " INTPTR_FORMAT, which, is_64bit, p2i(ip)));
+           "which %d is_64_bit %d ip " INTPTR_FORMAT, which, is_64bit, p2i(ip));
 #endif // _LP64
     return ip;