comparison src/share/vm/interpreter/bytecodeInterpreter.cpp @ 1490:f03d0a26bf83

6888954: argument formatting for assert() and friends Reviewed-by: kvn, twisti, apetrusenko, never, dcubed
author jcoomes
date Thu, 22 Apr 2010 13:23:15 -0700
parents f61d795ce6de
children df736661d0c8
comparison
equal deleted inserted replaced
1489:cff162798819 1490:f03d0a26bf83
2337 if (Bytecodes::is_defined((Bytecodes::Code)opcode)) { 2337 if (Bytecodes::is_defined((Bytecodes::Code)opcode)) {
2338 opcode = (jubyte)Bytecodes::java_code((Bytecodes::Code)opcode); 2338 opcode = (jubyte)Bytecodes::java_code((Bytecodes::Code)opcode);
2339 goto opcode_switch; 2339 goto opcode_switch;
2340 } 2340 }
2341 #endif 2341 #endif
2342 fatal2("\t*** Unimplemented opcode: %d = %s\n", 2342 fatal(err_msg("Unimplemented opcode %d = %s", opcode,
2343 opcode, Bytecodes::name((Bytecodes::Code)opcode)); 2343 Bytecodes::name((Bytecodes::Code)opcode)));
2344 goto finish; 2344 goto finish;
2345 2345
2346 } /* switch(opc) */ 2346 } /* switch(opc) */
2347 2347
2348 2348