diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-08-08 17:56:50 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-08-08 17:56:50 +0000 |
commit | eb774e1028fdf0bfc475431229b1b7e3c2471765 (patch) | |
tree | 7da58b7c2c350384d6d94f7a1aa23ee21f56bd2a /include/llvm/Target/TargetAsmInfo.h | |
parent | e117248fd50e32292fc604a0556f72193be8be35 (diff) | |
download | external_llvm-eb774e1028fdf0bfc475431229b1b7e3c2471765.zip external_llvm-eb774e1028fdf0bfc475431229b1b7e3c2471765.tar.gz external_llvm-eb774e1028fdf0bfc475431229b1b7e3c2471765.tar.bz2 |
Undo most of r54519.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54534 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetAsmInfo.h')
-rw-r--r-- | include/llvm/Target/TargetAsmInfo.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index 2fd1492..04e91cb 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -544,10 +544,8 @@ namespace llvm { const char* name = NULL) const; /// SectionForGlobal - This hooks returns proper section name for given - /// global with all necessary flags and marks. If NoCoalesce is true, - /// do not use coalesced section. - virtual std::string SectionForGlobal(const GlobalValue *GV, - bool NoCoalesce = false) const; + /// global with all necessary flags and marks. + virtual std::string SectionForGlobal(const GlobalValue *GV) const; // Helper methods for SectionForGlobal virtual std::string UniqueSectionForGlobal(const GlobalValue* GV, @@ -555,8 +553,7 @@ namespace llvm { virtual std::string PrintSectionFlags(unsigned flags) const { return ""; } - virtual const Section* SelectSectionForGlobal(const GlobalValue *GV, - bool NoCoalesce = false) const; + virtual const Section* SelectSectionForGlobal(const GlobalValue *GV) const; virtual const Section* SelectSectionForMachineConst(const Type *Ty) const; |