Blame SOURCES/jdk8257794-remove_broken_assert.patch

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