diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-24 16:46:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-24 16:46:50 +0000 |
commit | b0a50a5d33f2798c718d86c13efcf40719f00dbb (patch) | |
tree | 7d4dadb8b31586f33ded6226d860b600c06fa47d /include | |
parent | 5925eb62f2df106be54b70f0c8eedb0a931aa3ce (diff) | |
download | external_llvm-b0a50a5d33f2798c718d86c13efcf40719f00dbb.zip external_llvm-b0a50a5d33f2798c718d86c13efcf40719f00dbb.tar.gz external_llvm-b0a50a5d33f2798c718d86c13efcf40719f00dbb.tar.bz2 |
make SectionFlagsForGlobal a private static function instead of a public
virtual one.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76973 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Target/TargetAsmInfo.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index 63afe9b..42545c6 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -595,13 +595,6 @@ namespace llvm { virtual SectionKind::Kind SectionKindForGlobal(const GlobalValue *GV) const; - /// SectionFlagsForGlobal - This hook allows the target to select proper - /// section flags either for given global or for section. -// FIXME: Eliminate this. - virtual unsigned - SectionFlagsForGlobal(const GlobalValue *GV = NULL, - const char* name = NULL) const; - /// SectionForGlobal - This hooks returns proper section name for given /// global with all necessary flags and marks. // FIXME: Eliminate this. |