Skip to content

Commit c2e0519

Browse files
committed
fixup! Add missing braces
1 parent 1e3bc92 commit c2e0519

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Analysis/ValueTracking.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5612,8 +5612,9 @@ void computeKnownFPClass(const Value *V, const APInt &DemandedElts,
56125612
auto *CIdx = dyn_cast<ConstantInt>(Op->getOperand(1));
56135613
if (CIdx && CIdx->getValue().ult(NumElts))
56145614
DemandedVecElts = APInt::getOneBitSet(NumElts, CIdx->getZExtValue());
5615-
} else
5615+
} else {
56165616
DemandedVecElts = APInt(1, 1);
5617+
}
56175618

56185619
return computeKnownFPClass(Vec, DemandedVecElts, InterestedClasses, Known,
56195620
Q, Depth + 1);

0 commit comments

Comments
 (0)