# HG changeset patch # User anoll # Date 1399374508 -7200 # Node ID b51cd513d2e0e7ea0f70b0a14800163748ea5f0b # Parent c657ae48974c50a51a81683d8a3c48c8e2a259ee 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 diff -r c657ae48974c -r b51cd513d2e0 hotspot/src/share/vm/interpreter/bytecodeInterpreter.cpp --- 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