hotspot/src/share/vm/interpreter/templateInterpreter.cpp
changeset 33105 294e48b4f704
parent 32391 01e2f5e916c7
child 33129 e0bcbb5015b3
--- a/hotspot/src/share/vm/interpreter/templateInterpreter.cpp	Mon Sep 28 15:05:02 2015 +0200
+++ b/hotspot/src/share/vm/interpreter/templateInterpreter.cpp	Tue Sep 29 11:02:08 2015 +0200
@@ -602,7 +602,7 @@
   case Bytecodes::_invokedynamic:
     return Interpreter::invokedynamic_return_entry_table();
   default:
-    fatal(err_msg("invalid bytecode: %s", Bytecodes::name(code)));
+    fatal("invalid bytecode: %s", Bytecodes::name(code));
     return NULL;
   }
 }
@@ -624,7 +624,7 @@
   case Bytecodes::_invokedynamic:
     return _invokedynamic_return_entry[index];
   default:
-    assert(!Bytecodes::is_invoke(code), err_msg("invoke instructions should be handled separately: %s", Bytecodes::name(code)));
+    assert(!Bytecodes::is_invoke(code), "invoke instructions should be handled separately: %s", Bytecodes::name(code));
     return _return_entry[length].entry(state);
   }
 }