diff options
author | Eric Christopher <echristo@apple.com> | 2009-09-06 22:20:54 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2009-09-06 22:20:54 +0000 |
commit | f61f89ae14cf332a014a598153137113af34002f (patch) | |
tree | e88206e6f82d8cbcdafd6636e848e4bbf4c679fe | |
parent | 6c4025773a1de0cde0e8e27e8954e48a0fabbcd7 (diff) | |
download | external_llvm-f61f89ae14cf332a014a598153137113af34002f.zip external_llvm-f61f89ae14cf332a014a598153137113af34002f.tar.gz external_llvm-f61f89ae14cf332a014a598153137113af34002f.tar.bz2 |
Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81138 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Utils/InlineFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/InlineFunction.cpp b/lib/Transforms/Utils/InlineFunction.cpp index 7004248..4b133fd 100644 --- a/lib/Transforms/Utils/InlineFunction.cpp +++ b/lib/Transforms/Utils/InlineFunction.cpp @@ -40,7 +40,7 @@ bool llvm::InlineFunction(InvokeInst *II, CallGraph *CG, const TargetData *TD, /// HandleCallsInBlockInlinedThroughInvoke - When we inline a basic block into -/// an invoke, we have to check all of all of the calls that can throw into +/// an invoke, we have to turn all of the calls that can throw into /// invokes. This function analyze BB to see if there are any calls, and if so, /// it rewrites them to be invokes that jump to InvokeDest and fills in the PHI /// nodes in that block with the values specified in InvokeDestPHIValues. |