diff options
author | Sanjay Patel <spatel@rotateright.com> | 2015-06-24 20:40:57 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2015-06-24 20:40:57 +0000 |
commit | 09159b8f475633315b7737acde531fdfb8db3874 (patch) | |
tree | 07f60989c9fe5e52621fc5508436bef45ddc9f93 /llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp | |
parent | 49560c7a10f40bd91496b7c88197707410b0dd7d (diff) | |
download | bcm5719-llvm-09159b8f475633315b7737acde531fdfb8db3874.tar.gz bcm5719-llvm-09159b8f475633315b7737acde531fdfb8db3874.zip |
don't repeat function names in comments; NFC
llvm-svn: 240591
Diffstat (limited to 'llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp b/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp index f0e3ffdb95a..e011af488dd 100644 --- a/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp +++ b/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp @@ -48,8 +48,8 @@ UserBonusInstThreshold("bonus-inst-threshold", cl::Hidden, cl::init(1), STATISTIC(NumSimpl, "Number of blocks simplified"); -/// mergeEmptyReturnBlocks - If we have more than one empty (other than phi -/// node) return blocks, merge them together to promote recursive block merging. +/// If we have more than one empty (other than phi node) return blocks, +/// merge them together to promote recursive block merging. static bool mergeEmptyReturnBlocks(Function &F) { bool Changed = false; @@ -124,7 +124,7 @@ static bool mergeEmptyReturnBlocks(Function &F) { return Changed; } -/// iterativelySimplifyCFG - Call SimplifyCFG on all the blocks in the function, +/// Call SimplifyCFG on all the blocks in the function, /// iterating until no more changes are made. static bool iterativelySimplifyCFG(Function &F, const TargetTransformInfo &TTI, AssumptionCache *AC, |