Skip to content

Commit e7fde50

Browse files
code formatting
1 parent 7cc7662 commit e7fde50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1612,7 +1612,7 @@ static void insertTrivialPHIs(CHRScope *Scope,
16121612
if (FoundLifetimeAnnotation) {
16131613
for (User *U : make_early_inc_range(I.users())) {
16141614
if (auto *UI = dyn_cast<Instruction>(U))
1615-
if(UI->isLifetimeStartOrEnd())
1615+
if (UI->isLifetimeStartOrEnd())
16161616
UI->eraseFromParent();
16171617
}
16181618
}
@@ -1710,7 +1710,7 @@ void CHR::transformScopes(CHRScope *Scope, DenseSet<PHINode *> &TrivialPHIs) {
17101710
BasicBlock *ExitBlock = LastRegion->getExit();
17111711
std::optional<uint64_t> ProfileCount = BFI.getBlockProfileCount(EntryBlock);
17121712

1713-
SmallVector<AllocaInst*> StaticAllocas;
1713+
SmallVector<AllocaInst *> StaticAllocas;
17141714
for (Instruction &I : *EntryBlock) {
17151715
if (auto *AI = dyn_cast<AllocaInst>(&I)) {
17161716
if (AI->isStaticAlloca())

0 commit comments

Comments
 (0)