diff options
author | Eric Christopher <echristo@apple.com> | 2010-07-13 18:27:13 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-07-13 18:27:13 +0000 |
commit | ea282034b66d61f1ac41942c33e40a263a0c2775 (patch) | |
tree | 0c616fb767ce0b3c4ab88b6b6ac598e9acfd20d3 /llvm/lib/Transforms | |
parent | f241d4626c40c609ad5e420835bbe70331b27020 (diff) | |
download | bcm5719-llvm-ea282034b66d61f1ac41942c33e40a263a0c2775.tar.gz bcm5719-llvm-ea282034b66d61f1ac41942c33e40a263a0c2775.zip |
Grammar.
llvm-svn: 108252
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/IPO/Inliner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/IPO/Inliner.cpp b/llvm/lib/Transforms/IPO/Inliner.cpp index 027a220bc7f..9bb01f5699f 100644 --- a/llvm/lib/Transforms/IPO/Inliner.cpp +++ b/llvm/lib/Transforms/IPO/Inliner.cpp @@ -399,7 +399,7 @@ bool Inliner::runOnSCC(CallGraphSCC &SCC) { // We can only inline direct calls to non-declarations. if (Callee == 0 || Callee->isDeclaration()) continue; - // If this call sites was obtained by inlining another function, verify + // If this call site was obtained by inlining another function, verify // that the include path for the function did not include the callee // itself. If so, we'd be recursively inlinling the same function, // which would provide the same callsites, which would cause us to |