Skip to content

Commit 81198ac

Browse files
apply format.patch
1 parent 1f8080d commit 81198ac

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/coreclr/jit/lsraxarch.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2995,9 +2995,11 @@ int LinearScan::BuildHWIntrinsic(GenTreeHWIntrinsic* intrinsicTree, int* pDstCou
29952995
}
29962996
else
29972997
{
2998-
// Currently dstCount = 2 is only used for DivRem and Multiply, which has special constraints and is handled above
2998+
// Currently dstCount = 2 is only used for DivRem and Multiply, which has special constraints and is handled
2999+
// above
29993000
assert((dstCount == 0) ||
3000-
((dstCount == 2) && ((intrinsicId == NI_X86Base_DivRem) || (intrinsicId == NI_X86Base_X64_DivRem) || (intrinsicId == NI_X86Base_Multiply) || (intrinsicId == NI_X86Base_X64_Multiply))));
3001+
((dstCount == 2) && ((intrinsicId == NI_X86Base_DivRem) || (intrinsicId == NI_X86Base_X64_DivRem) ||
3002+
(intrinsicId == NI_X86Base_Multiply) || (intrinsicId == NI_X86Base_X64_Multiply))));
30013003
}
30023004

30033005
*pDstCount = dstCount;

0 commit comments

Comments
 (0)