Blame SOURCES/jdk8257794-remove_broken_assert.patch

95617d
diff --git openjdk.orig/src/hotspot/share/interpreter/bytecodeInterpreter.cpp openjdk/src/hotspot/share/interpreter/bytecodeInterpreter.cpp
95617d
index d18d70b5f9..30ab380e40 100644
95617d
--- openjdk.orig/src/hotspot/share/interpreter/bytecodeInterpreter.cpp
95617d
+++ openjdk/src/hotspot/share/interpreter/bytecodeInterpreter.cpp
95617d
@@ -481,7 +481,6 @@ BytecodeInterpreter::run(interpreterState istate) {
95617d
 #ifdef ASSERT
95617d
   if (istate->_msg != initialize) {
95617d
     assert(labs(istate->_stack_base - istate->_stack_limit) == (istate->_method->max_stack() + 1), "bad stack limit");
95617d
-    IA32_ONLY(assert(istate->_stack_limit == istate->_thread->last_Java_sp() + 1, "wrong"));
95617d
   }
95617d
   // Verify linkages.
95617d
   interpreterState l = istate;