Skip to content

Commit 3f3af56

Browse files
authored
[NFC][LLVM] Add end namespace comments to TailRecursionElimination (#163771)
1 parent 3fcc7cf commit 3f3af56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ struct AllocaDerivedValueTracker {
192192
SmallPtrSet<Instruction *, 32> AllocaUsers;
193193
SmallPtrSet<Instruction *, 32> EscapePoints;
194194
};
195-
}
195+
} // namespace
196196

197197
static bool markTails(Function &F, OptimizationRemarkEmitter *ORE) {
198198
if (F.callsFunctionThatReturnsTwice())
@@ -967,7 +967,7 @@ struct TailCallElim : public FunctionPass {
967967
/*BFI=*/nullptr);
968968
}
969969
};
970-
}
970+
} // namespace
971971

972972
char TailCallElim::ID = 0;
973973
INITIALIZE_PASS_BEGIN(TailCallElim, "tailcallelim", "Tail Call Elimination",

0 commit comments

Comments
 (0)