We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d0674bb + 3ae3e40 commit 04663cfCopy full SHA for 04663cf
llvm/lib/Analysis/ConstraintSystem.cpp
@@ -95,14 +95,14 @@ bool ConstraintSystem::eliminateUsingFM() {
95
IdxUpper++;
96
}
97
98
- if (MulOverflow(UpperV, ((-1) * LowerLast), M1))
+ if (MulOverflow(UpperV, -1 * LowerLast, M1))
99
return false;
100
if (IdxLower < LowerRow.size() && LowerRow[IdxLower].Id == CurrentId) {
101
LowerV = LowerRow[IdxLower].Coefficient;
102
IdxLower++;
103
104
105
- if (MulOverflow(LowerV, (UpperLast), M2))
+ if (MulOverflow(LowerV, UpperLast, M2))
106
107
if (AddOverflow(M1, M2, N))
108
0 commit comments