diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-09-25 21:00:33 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-09-25 21:00:33 +0000 |
commit | 3829e8a0e4d29e43d934b78935c3e067db8ff195 (patch) | |
tree | ecadc8690534554752eb68d3b76000b96f487b1e /include/llvm/Target/TargetAsmInfo.h | |
parent | a2497eb37f28bc0b58e320c80842c5a7ba182689 (diff) | |
download | external_llvm-3829e8a0e4d29e43d934b78935c3e067db8ff195.zip external_llvm-3829e8a0e4d29e43d934b78935c3e067db8ff195.tar.gz external_llvm-3829e8a0e4d29e43d934b78935c3e067db8ff195.tar.bz2 |
Reapply 56585:56589 with proper fix for some gcc versions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56621 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetAsmInfo.h')
-rw-r--r-- | include/llvm/Target/TargetAsmInfo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index c93d189..e3a8a57 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -124,6 +124,7 @@ namespace llvm { private: mutable StringMap<Section> Sections; mutable SectionFlags::FlagsStringsMapType FlagsStrings; + void fillDefaultValues(); protected: //===------------------------------------------------------------------===// // Properties to be set by the target writer, used to configure asm printer. @@ -510,6 +511,7 @@ namespace llvm { public: TargetAsmInfo(); + TargetAsmInfo(const TargetMachine &TM); virtual ~TargetAsmInfo(); const Section* getNamedSection(const char *Name, |