Merge
authortwisti
Thu, 24 Mar 2011 23:04:40 -0700
changeset 8863 6f1fc00f3bbc
parent 8862 51b3027ec748 (diff)
parent 8733 1d72e73b278d (current diff)
child 8864 095236d9b401
child 8865 634fdd9b3425
Merge
hotspot/test/compiler/6987555/Test6987555.java
hotspot/test/compiler/6991596/Test6991596.java
--- a/hotspot/src/share/vm/interpreter/bytecodeInterpreter.cpp	Wed Mar 23 04:19:16 2011 -0700
+++ b/hotspot/src/share/vm/interpreter/bytecodeInterpreter.cpp	Thu Mar 24 23:04:40 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;