hotspot/src/share/vm/interpreter/bytecodeInterpreter.cpp
changeset 33105 294e48b4f704
parent 30764 fec48bf5a827
child 33208 5ec6ffa63c57
equal deleted inserted replaced
33104:a7c0f60a1294 33105:294e48b4f704
  2732           opcode = (jubyte)original_bytecode;
  2732           opcode = (jubyte)original_bytecode;
  2733           goto opcode_switch;
  2733           goto opcode_switch;
  2734       }
  2734       }
  2735 
  2735 
  2736       DEFAULT:
  2736       DEFAULT:
  2737           fatal(err_msg("Unimplemented opcode %d = %s", opcode,
  2737           fatal("Unimplemented opcode %d = %s", opcode,
  2738                         Bytecodes::name((Bytecodes::Code)opcode)));
  2738                 Bytecodes::name((Bytecodes::Code)opcode));
  2739           goto finish;
  2739           goto finish;
  2740 
  2740 
  2741       } /* switch(opc) */
  2741       } /* switch(opc) */
  2742 
  2742 
  2743 
  2743