mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
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:
parent
5f49f406c7
commit
142ed91465
1 changed files with 0 additions and 1 deletions
|
@ -508,7 +508,6 @@ BytecodeInterpreter::run(interpreterState istate) {
|
||||||
#ifdef ASSERT
|
#ifdef ASSERT
|
||||||
if (istate->_msg != initialize) {
|
if (istate->_msg != initialize) {
|
||||||
assert(labs(istate->_stack_base - istate->_stack_limit) == (istate->_method->max_stack() + 1), "bad stack limit");
|
assert(labs(istate->_stack_base - istate->_stack_limit) == (istate->_method->max_stack() + 1), "bad stack limit");
|
||||||
}
|
|
||||||
#ifndef SHARK
|
#ifndef SHARK
|
||||||
IA32_ONLY(assert(istate->_stack_limit == istate->_thread->last_Java_sp() + 1, "wrong"));
|
IA32_ONLY(assert(istate->_stack_limit == istate->_thread->last_Java_sp() + 1, "wrong"));
|
||||||
#endif // !SHARK
|
#endif // !SHARK
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue