projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a3619c6
)
Minor bug fix in Profile Name Prefix interface
author
Xinliang David Li
<davidxl@google.com>
Thu, 22 Oct 2015 21:51:09 +0000
(21:51 +0000)
committer
Xinliang David Li
<davidxl@google.com>
Thu, 22 Oct 2015 21:51:09 +0000
(21:51 +0000)
Exposed in uses by clang FE.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251070
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/ProfileData/InstrProf.h
patch
|
blob
|
history
diff --git
a/include/llvm/ProfileData/InstrProf.h
b/include/llvm/ProfileData/InstrProf.h
index 3dad3f5ccc683a824ca47ce3fd22dd467729d25b..995d1f13c1cc6f8f4797ba34aa4044d3b6db922d 100644
(file)
--- a/
include/llvm/ProfileData/InstrProf.h
+++ b/
include/llvm/ProfileData/InstrProf.h
@@
-44,7
+44,7
@@
inline StringRef getInstrProfCoverageSectionName(bool AddSegment) {
return AddSegment ? "__DATA,__llvm_covmap" : "__llvm_covmap";
}
-inline StringRef getInstrProfNameVarPrefix() { return "__llvm_profile_name
s
_"; }
+inline StringRef getInstrProfNameVarPrefix() { return "__llvm_profile_name_"; }
inline StringRef getInstrProfDataVarPrefix() { return "__llvm_profile_data_"; }