Skip to content

Commit

Permalink
Merge pull request #18068 from tajila/issue2
Browse files Browse the repository at this point in the history
Fix sequence after frame pop query
  • Loading branch information
gacholio committed Sep 12, 2023
2 parents 4310ddc + a931c35 commit 1f58a61
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions runtime/vm/BytecodeInterpreter.hpp
Expand Up @@ -1818,13 +1818,7 @@ class INTERPRETER_CLASS
}
#if defined(DEBUG_VERSION)
if (J9_CHECK_ASYNC_POP_FRAMES == action) {
UDATA executeAsyncCheck = FALSE;
updateVMStruct(REGISTER_ARGS);
ALWAYS_TRIGGER_J9HOOK_VM_POP_FRAMES_INTERRUPT(_vm->hookInterface, _currentThread, executeAsyncCheck);
VMStructHasBeenUpdated(REGISTER_ARGS);
if (executeAsyncCheck) {
rc = GOTO_ASYNC_CHECK;
}
rc = GOTO_ASYNC_CHECK;
goto done;
}
#endif
Expand Down

0 comments on commit 1f58a61

Please sign in to comment.