Skip to content

Commit

Permalink
Merge pull request dotnet#14318 from sdmaclea/PR-Fix-jump-bind-typo
Browse files Browse the repository at this point in the history
[Arm64] Fix emitJumpDistBind typo
  • Loading branch information
briansull committed Oct 4, 2017
2 parents 90fba83 + 406d2d6 commit e2e373f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jit/emit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3649,7 +3649,7 @@ void emitter::emitJumpDistBind()
ssz = JCC_SIZE_SMALL;
bool isTest = (jmp->idIns() == INS_tbz) || (jmp->idIns() == INS_tbnz);

nsd = (isTest) ? TB_DIST_SMALL_MAX_NEG : JCC_DIST_SMALL_MAX_POS;
nsd = (isTest) ? TB_DIST_SMALL_MAX_NEG : JCC_DIST_SMALL_MAX_NEG;
psd = (isTest) ? TB_DIST_SMALL_MAX_POS : JCC_DIST_SMALL_MAX_POS;
}
else if (emitIsUncondJump(jmp))
Expand Down

0 comments on commit e2e373f

Please sign in to comment.