[llvm-commits] [llvm] r108252 - /llvm/trunk/lib/Transforms/IPO/Inliner.cpp
Eric Christopher
echristo at apple.com
Tue Jul 13 11:27:14 PDT 2010
Author: echristo
Date: Tue Jul 13 13:27:13 2010
New Revision: 108252
URL: http://llvm.org/viewvc/llvm-project?rev=108252&view=rev
Log:
Grammar.
Modified:
llvm/trunk/lib/Transforms/IPO/Inliner.cpp
Modified: llvm/trunk/lib/Transforms/IPO/Inliner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/IPO/Inliner.cpp?rev=108252&r1=108251&r2=108252&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/IPO/Inliner.cpp (original)
+++ llvm/trunk/lib/Transforms/IPO/Inliner.cpp Tue Jul 13 13:27:13 2010
@@ -399,7 +399,7 @@
// 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
More information about the llvm-commits
mailing list