Skip to content

Commit

Permalink
Declare final
Browse files Browse the repository at this point in the history
  • Loading branch information
DieKautz committed Feb 5, 2024
1 parent 026c166 commit 230be16
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ private Object doExternalCall(final MaterializedFrame frame) {
// (AbstractSendNode.executeVoid). Pop the return value and return it.
final Object returnValue = FrameAccess.getStackValue(frame, FrameAccess.getStackPointer(frame) - 1, FrameAccess.getNumArguments(frame));
FrameAccess.setStackPointer(frame, FrameAccess.getStackPointer(frame) - 1);
long failReason = interpreterProxy.failed();
final long failReason = interpreterProxy.failed();
if (failReason != 0) {
throw PrimitiveFailed.andTransferToInterpreter((int) failReason);
}
Expand Down

0 comments on commit 230be16

Please sign in to comment.