Skip to content

Commit 3ca5a4e

Browse files
Remove comma expression and ignore the result instead.
1 parent 0dd5c04 commit 3ca5a4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Analysis/ScalarEvolution.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10978,7 +10978,7 @@ bool ScalarEvolution::SimplifyICmpOperands(CmpPredicate &Pred, const SCEV *&LHS,
1097810978
// Recursively simplify until we either hit a recursion limit or nothing
1097910979
// changes.
1098010980
if (Changed)
10981-
return SimplifyICmpOperands(Pred, LHS, RHS, Depth + 1), true;
10981+
(void)SimplifyICmpOperands(Pred, LHS, RHS, Depth + 1);
1098210982

1098310983
return Changed;
1098410984
}

0 commit comments

Comments
 (0)