Skip to content

Commit 342053c

Browse files
author
Evan Cheng
committed
Unbreak the build.
llvm-svn: 71091
1 parent 0dec5b9 commit 342053c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2030,7 +2030,7 @@ ICmpInst *LoopStrengthReduce::ChangeCompareStride(Loop *L, ICmpInst *Cond,
20302030
APInt Mul = APInt(BitWidth*2, CmpVal, true);
20312031
Mul = Mul * APInt(BitWidth*2, Scale, true);
20322032
// Check for overflow.
2033-
if (!Mul.isSignedIntN(BitWidth)) {
2033+
if (!Mul.isSignedIntN(BitWidth))
20342034
continue;
20352035

20362036
// Watch out for overflow.

0 commit comments

Comments
 (0)