Skip to content

Commit 3ae3e40

Browse files
committed
[ConstraintSystem] Drop left-over parentheses. (NFC)
Remove left over redundant parentheses after 9b6127d as pointed out by @nikic.
1 parent 6023e24 commit 3ae3e40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Analysis/ConstraintSystem.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,14 @@ bool ConstraintSystem::eliminateUsingFM() {
9595
IdxUpper++;
9696
}
9797

98-
if (MulOverflow(UpperV, ((-1) * LowerLast), M1))
98+
if (MulOverflow(UpperV, -1 * LowerLast, M1))
9999
return false;
100100
if (IdxLower < LowerRow.size() && LowerRow[IdxLower].Id == CurrentId) {
101101
LowerV = LowerRow[IdxLower].Coefficient;
102102
IdxLower++;
103103
}
104104

105-
if (MulOverflow(LowerV, (UpperLast), M2))
105+
if (MulOverflow(LowerV, UpperLast, M2))
106106
return false;
107107
if (AddOverflow(M1, M2, N))
108108
return false;

0 commit comments

Comments
 (0)