]> granicus.if.org Git - llvm/commitdiff
Fix typo in comment. NFC.
authorChad Rosier <mcrosier@codeaurora.org>
Tue, 8 Nov 2016 19:10:25 +0000 (19:10 +0000)
committerChad Rosier <mcrosier@codeaurora.org>
Tue, 8 Nov 2016 19:10:25 +0000 (19:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@286270 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/ArgumentPromotion.cpp

index 063a4bec094d88b311768cd394bbe34a1ba127b1..c0389df5b735812ced3f17c3ecb8b09fb3d4ea76 100644 (file)
@@ -374,8 +374,8 @@ static bool AllCallersPassInValidPointerForArgument(Argument *Arg) {
 
   unsigned ArgNo = Arg->getArgNo();
 
-  // Look at all call sites of the function.  At this pointer we know we only
-  // have direct callees.
+  // Look at all call sites of the function.  At this point we know we only have
+  // direct callees.
   for (User *U : Callee->users()) {
     CallSite CS(U);
     assert(CS && "Should only have direct calls!");