Skip to content

Commit 74ce859

Browse files
committed
Fix Fmt
1 parent 4a16816 commit 74ce859

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Analysis/ValueTracking.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ static void breakSelfRecursivePHI(const Use *U, const PHINode *PHI,
614614
// TODO: We could handle any number of incoming edges as long as we only have
615615
// two unique values.
616616
if (auto *IncPhi = dyn_cast<PHINode>(ValOut);
617-
IncPhi && IncPhi->getNumIncomingValues() == 2) {
617+
IncPhi && IncPhi->getNumIncomingValues() == 2) {
618618
for (int Idx = 0; Idx < 2; ++Idx) {
619619
if (IncPhi->getIncomingValue(Idx) == PHI) {
620620
ValOut = IncPhi->getIncomingValue(1 - Idx);

0 commit comments

Comments
 (0)