Skip to content

Commit 8b0c4e1

Browse files
authored
Apply format patch in lsraarm64.cpp (#114603)
1 parent e220a94 commit 8b0c4e1

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/coreclr/jit/lsraarm64.cpp

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1481,14 +1481,16 @@ int LinearScan::BuildHWIntrinsic(GenTreeHWIntrinsic* intrinsicTree, int* pDstCou
14811481
{
14821482
srcCount += BuildContainedCselUses(containedCselOp, delayFreeOp, candidates);
14831483
}
1484-
else if ((intrin.category == HW_Category_SIMDByIndexedElement) && (genTypeSize(intrin.baseType) == 2) && !HWIntrinsicInfo::HasImmediateOperand(intrin.id))
1484+
else if ((intrin.category == HW_Category_SIMDByIndexedElement) && (genTypeSize(intrin.baseType) == 2) &&
1485+
!HWIntrinsicInfo::HasImmediateOperand(intrin.id))
14851486
{
1486-
// Some "Advanced SIMD scalar x indexed element" and "Advanced SIMD vector x indexed element" instructions (e.g.
1487-
// "MLA (by element)") have encoding that restricts what registers that can be used for the indexed element when
1488-
// the element size is H (i.e. 2 bytes).
1487+
// Some "Advanced SIMD scalar x indexed element" and "Advanced SIMD vector x indexed element" instructions
1488+
// (e.g. "MLA (by element)") have encoding that restricts what registers that can be used for the indexed
1489+
// element when the element size is H (i.e. 2 bytes).
14891490
if (((opNum == 2) || (opNum == 3)))
14901491
{
1491-
// For those intrinsics, just force the delay-free registers, so they do not conflict with the definition.
1492+
// For those intrinsics, just force the delay-free registers, so they do not conflict with the
1493+
// definition.
14921494
srcCount += BuildDelayFreeUses(operand, nullptr, candidates);
14931495
}
14941496
else

0 commit comments

Comments
 (0)