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 | f0193ed8decb2e78d8d5ec4a4eaeed8f3036bf6e (patch) | |
tree | 8394f18e89261fa502f79a9cbe755c505430ec94 /lib/Transforms/IPO/Inliner.cpp | |
parent | 24bb7bdb1ec2c99e8aaa7945272eba5b46c2ea8e (diff) |
Grammar.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108252 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO/Inliner.cpp')
-rw-r--r-- | lib/Transforms/IPO/Inliner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/IPO/Inliner.cpp b/lib/Transforms/IPO/Inliner.cpp index 027a220bc7..9bb01f5699 100644 --- a/lib/Transforms/IPO/Inliner.cpp +++ b/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 |