8042443: Fix C++-Interpreter after "8036956: remove EnableInvokeDynamic flag"
Summary: Insert missing bracket to make the interpreter build again
Reviewed-by: sla
Contributed-by: Volker Simonis <volker.simonis@gmail.com>
--- a/hotspot/src/share/vm/interpreter/bytecodeInterpreter.cpp Tue May 06 08:01:14 2014 +0000
+++ b/hotspot/src/share/vm/interpreter/bytecodeInterpreter.cpp Tue May 06 13:08:28 2014 +0200
@@ -508,7 +508,6 @@
#ifdef ASSERT
if (istate->_msg != initialize) {
assert(labs(istate->_stack_base - istate->_stack_limit) == (istate->_method->max_stack() + 1), "bad stack limit");
- }
#ifndef SHARK
IA32_ONLY(assert(istate->_stack_limit == istate->_thread->last_Java_sp() + 1, "wrong"));
#endif // !SHARK