diff options
author | Michael Zolotukhin <mzolotukhin@apple.com> | 2014-04-29 07:35:33 +0000 |
---|---|---|
committer | Michael Zolotukhin <mzolotukhin@apple.com> | 2014-04-29 07:35:33 +0000 |
commit | a93fec040a1ee90901e47e2ba3250522356b8771 (patch) | |
tree | 57ccbdacbc18f1954999589aa4de492f34aa0f78 /llvm/lib/Transforms/Utils/LoopSimplify.cpp | |
parent | 35b02bc7abac9a3eef623730bb9f91270541a065 (diff) | |
download | bcm5719-llvm-a93fec040a1ee90901e47e2ba3250522356b8771.tar.gz bcm5719-llvm-a93fec040a1ee90901e47e2ba3250522356b8771.zip |
Fix a typo in comment
llvm-svn: 207499
Diffstat (limited to 'llvm/lib/Transforms/Utils/LoopSimplify.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/LoopSimplify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/LoopSimplify.cpp b/llvm/lib/Transforms/Utils/LoopSimplify.cpp index bd825eb864b..f7787dafd5b 100644 --- a/llvm/lib/Transforms/Utils/LoopSimplify.cpp +++ b/llvm/lib/Transforms/Utils/LoopSimplify.cpp @@ -778,7 +778,7 @@ INITIALIZE_PASS_END(LoopSimplify, "loop-simplify", char &llvm::LoopSimplifyID = LoopSimplify::ID; Pass *llvm::createLoopSimplifyPass() { return new LoopSimplify(); } -/// runOnLoop - Run down all loops in the CFG (recursively, but we could do +/// runOnFunction - Run down all loops in the CFG (recursively, but we could do /// it in any convenient order) inserting preheaders... /// bool LoopSimplify::runOnFunction(Function &F) { |