diff options
| author | George Burgess IV <george.burgess.iv@gmail.com> | 2018-04-12 18:36:01 +0000 |
|---|---|---|
| committer | George Burgess IV <george.burgess.iv@gmail.com> | 2018-04-12 18:36:01 +0000 |
| commit | ceecd45b4d46d4b7064a14f9778541e7da5c35b2 (patch) | |
| tree | 6812002e620dfcc259c5e035feef185a779accc0 | |
| parent | 9d8877baf814019e8dd90536c1abf4428c9bce7d (diff) | |
| download | bcm5719-llvm-ceecd45b4d46d4b7064a14f9778541e7da5c35b2.tar.gz bcm5719-llvm-ceecd45b4d46d4b7064a14f9778541e7da5c35b2.zip | |
Fix a typo in a comment; NFC
llvm-svn: 329935
| -rw-r--r-- | llvm/lib/Analysis/ProfileSummaryInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ProfileSummaryInfo.cpp b/llvm/lib/Analysis/ProfileSummaryInfo.cpp index 61c9411b2c4..33b1ebdfcbf 100644 --- a/llvm/lib/Analysis/ProfileSummaryInfo.cpp +++ b/llvm/lib/Analysis/ProfileSummaryInfo.cpp @@ -247,7 +247,7 @@ bool ProfileSummaryInfo::isColdCallSite(const CallSite &CS, 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() && |

