[llvm] r329935 - Fix a typo in a comment; NFC

George Burgess IV via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 12 11:36:01 PDT 2018


Author: gbiv
Date: Thu Apr 12 11:36:01 2018
New Revision: 329935

URL: http://llvm.org/viewvc/llvm-project?rev=329935&view=rev
Log:
Fix a typo in a comment; NFC

Modified:
    llvm/trunk/lib/Analysis/ProfileSummaryInfo.cpp

Modified: llvm/trunk/lib/Analysis/ProfileSummaryInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/ProfileSummaryInfo.cpp?rev=329935&r1=329934&r2=329935&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/ProfileSummaryInfo.cpp (original)
+++ llvm/trunk/lib/Analysis/ProfileSummaryInfo.cpp Thu Apr 12 11:36:01 2018
@@ -247,7 +247,7 @@ bool ProfileSummaryInfo::isColdCallSite(
     return isColdCount(*C);
 
   // In SamplePGO, if the caller has been sampled, and there is no profile
-  // annotatedon the callsite, we consider the callsite as cold.
+  // annotated on the callsite, we consider the callsite as cold.
   // If there is no profile for the caller, and we know the profile is
   // accurate, we consider the callsite as cold.
   return (hasSampleProfile() &&




More information about the llvm-commits mailing list