Skip to content

Commit f2e6584

Browse files
committed
fmt
1 parent a79af80 commit f2e6584

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Transforms/Utils/SimplifyCFG.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3393,7 +3393,8 @@ bool SimplifyCFGOpt::speculativelyExecuteBB(BranchInst *BI,
33933393
// Similarly strip attributes that maybe dependent on condition we are
33943394
// hoisting above.
33953395
for (auto &I : make_early_inc_range(*ThenBB)) {
3396-
if ((!SpeculatedStoreValue || &I != SpeculatedStore) && !isa<CallBase>(&I)) {
3396+
if ((!SpeculatedStoreValue || &I != SpeculatedStore) &&
3397+
!isa<CallBase>(&I)) {
33973398
I.setDebugLoc(DebugLoc::getDropped());
33983399
}
33993400
I.dropUBImplyingAttrsAndMetadata();

0 commit comments

Comments
 (0)