Skip to content

Commit

Permalink
Fix opNum type
Browse files Browse the repository at this point in the history
  • Loading branch information
a74nh committed Sep 9, 2024
1 parent f5d34ac commit 357281e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/jit/lsraarm64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1412,7 +1412,7 @@ int LinearScan::BuildHWIntrinsic(GenTreeHWIntrinsic* intrinsicTree, int* pDstCou
BuildHWIntrinsicImmediate(intrinsicTree, intrin);

// Build all Operands
for (int opNum = 1; opNum <= intrin.numOperands; opNum++)
for (size_t opNum = 1; opNum <= intrin.numOperands; opNum++)
{
GenTree* operand = intrinsicTree->Op(opNum);

Expand Down

0 comments on commit 357281e

Please sign in to comment.