diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-08 20:52:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-08 20:52:13 +0000 |
commit | a551f8a67e6fccf4487abf62c2a5eba9db990a35 (patch) | |
tree | b65bb7aaa199fb900f27e00950af39612a9eccda /include/llvm | |
parent | b059d5d8d70f5a44d2f8273d439353c0eb39f093 (diff) | |
download | external_llvm-a551f8a67e6fccf4487abf62c2a5eba9db990a35.zip external_llvm-a551f8a67e6fccf4487abf62c2a5eba9db990a35.tar.gz external_llvm-a551f8a67e6fccf4487abf62c2a5eba9db990a35.tar.bz2 |
make target-specific TLOF impls (except PIC16) create target-specific
MCSection instances.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78500 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/MC/MCSection.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/MC/MCSection.h b/include/llvm/MC/MCSection.h index e73760a..0669d0f 100644 --- a/include/llvm/MC/MCSection.h +++ b/include/llvm/MC/MCSection.h @@ -72,12 +72,12 @@ namespace llvm { SectionKind K, MCContext &Ctx); }; - class MCSectionPECOFF : public MCSection { - MCSectionPECOFF(const StringRef &Name, bool IsDirective, SectionKind K, - MCContext &Ctx) : MCSection(Name, IsDirective, K, Ctx) {} + class MCSectionCOFF : public MCSection { + MCSectionCOFF(const StringRef &Name, bool IsDirective, SectionKind K, + MCContext &Ctx) : MCSection(Name, IsDirective, K, Ctx) {} public: - static MCSectionPECOFF *Create(const StringRef &Name, bool IsDirective, + static MCSectionCOFF *Create(const StringRef &Name, bool IsDirective, SectionKind K, MCContext &Ctx); }; |