From: Chad Rosier Date: Tue, 8 Nov 2016 19:10:25 +0000 (+0000) Subject: Fix typo in comment. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e481b328154ef0f8c13588e7cea9366911853160;p=llvm Fix typo in comment. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@286270 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/IPO/ArgumentPromotion.cpp b/lib/Transforms/IPO/ArgumentPromotion.cpp index 063a4bec094..c0389df5b73 100644 --- a/lib/Transforms/IPO/ArgumentPromotion.cpp +++ b/lib/Transforms/IPO/ArgumentPromotion.cpp @@ -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!");