Skip to content

Commit d9f2861

Browse files
committed
fix format
1 parent 0f51cf9 commit d9f2861

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Analysis/InlineCost.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1681,8 +1681,8 @@ bool CallAnalyzer::visitGetElementPtr(GetElementPtrInst &I) {
16811681
}
16821682

16831683
// Simplify \p Cmp if RHS is const and we can ValueTrack LHS.
1684-
// This handles the case only when the Cmp instruction is guarding a recursive call
1685-
// that will cause the Cmp to fail/succeed for the recursive call.
1684+
// This handles the case only when the Cmp instruction is guarding a recursive
1685+
// call that will cause the Cmp to fail/succeed for the recursive call.
16861686
bool CallAnalyzer::simplifyCmpInstForRecCall(CmpInst &Cmp) {
16871687
// Bail out if LHS is not a function argument or RHS is NOT const:
16881688
if (!isa<Argument>(Cmp.getOperand(0)) || !isa<Constant>(Cmp.getOperand(1)))

0 commit comments

Comments
 (0)