8042443: Fix C++-Interpreter after "8036956: remove EnableInvokeDynamic flag"

Insert missing bracket to make the interpreter build again

Reviewed-by: sla
This commit is contained in:
Volker Simonis 2014-05-06 13:08:28 +02:00 committed by Albert Noll
parent 5f49f406c7
commit 142ed91465

View file

@ -508,7 +508,6 @@ BytecodeInterpreter::run(interpreterState istate) {
#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