Skip to content

Commit 9bd836e

Browse files
committed
8255744: Zero: handle JVM_CONSTANT_DynamicInError
Reviewed-by: sgehwolf
1 parent 36998b0 commit 9bd836e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/hotspot/share/interpreter/zero/bytecodeInterpreter.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2266,6 +2266,7 @@ BytecodeInterpreter::run(interpreterState istate) {
22662266
break;
22672267

22682268
case JVM_CONSTANT_Dynamic:
2269+
case JVM_CONSTANT_DynamicInError:
22692270
{
22702271
CALL_VM(InterpreterRuntime::resolve_ldc(THREAD, (Bytecodes::Code) opcode), handle_exception);
22712272
oop result = THREAD->vm_result();
@@ -2307,6 +2308,7 @@ BytecodeInterpreter::run(interpreterState istate) {
23072308
break;
23082309

23092310
case JVM_CONSTANT_Dynamic:
2311+
case JVM_CONSTANT_DynamicInError:
23102312
{
23112313
CALL_VM(InterpreterRuntime::resolve_ldc(THREAD, (Bytecodes::Code) opcode), handle_exception);
23122314
oop result = THREAD->vm_result();

0 commit comments

Comments
 (0)