Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 6739625

Browse files
committed
Fixing some of the x86 HWIntrinsics to only use byteable registers, where required
1 parent 0d194d7 commit 6739625

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jit/lsraxarch.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2528,7 +2528,7 @@ void LinearScan::TreeNodeInfoInitHWIntrinsic(GenTreeHWIntrinsic* intrinsicTree,
25282528
case NI_SSE_CompareNotEqualOrderedScalar:
25292529
case NI_SSE_CompareNotEqualUnorderedScalar:
25302530
info->internalIntCount = 1;
2531-
info->setInternalCandidates(this, allRegs(TYP_INT));
2531+
info->setInternalCandidates(this, RBM_BYTE_REGS);
25322532
break;
25332533

25342534
case NI_SSE_SetScalar:

0 commit comments

Comments
 (0)