# HG changeset patch # User jcoomes # Date 1301035796 25200 # Node ID f731b22cd52db2c1082eef2e95bab5f05e955c37 # Parent 006b3750a4d439947e7c626ee21bfb5f5c8b4c64# Parent b868d9928221476e8b25be159a3c0571e8c0aa5b Merge diff -r 006b3750a4d4 -r f731b22cd52d src/share/vm/interpreter/bytecodeInterpreter.cpp --- a/src/share/vm/interpreter/bytecodeInterpreter.cpp Thu Mar 24 23:06:13 2011 -0700 +++ b/src/share/vm/interpreter/bytecodeInterpreter.cpp Thu Mar 24 23:49:56 2011 -0700 @@ -2383,17 +2383,6 @@ } DEFAULT: -#ifdef ZERO - // Some zero configurations use the C++ interpreter as a - // fallback interpreter and have support for platform - // specific fast bytecodes which aren't supported here, so - // redispatch to the equivalent non-fast bytecode when they - // are encountered. - if (Bytecodes::is_defined((Bytecodes::Code)opcode)) { - opcode = (jubyte)Bytecodes::java_code((Bytecodes::Code)opcode); - goto opcode_switch; - } -#endif fatal(err_msg("Unimplemented opcode %d = %s", opcode, Bytecodes::name((Bytecodes::Code)opcode))); goto finish;