summaryrefslogtreecommitdiff
path: root/include/llvm/MC/MCSection.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-08 20:52:13 +0000
committerChris Lattner <sabre@nondot.org>2009-08-08 20:52:13 +0000
commit7c599d056a41262681aa7fcd771eeed53a8e0bd2 (patch)
treeb65bb7aaa199fb900f27e00950af39612a9eccda /include/llvm/MC/MCSection.h
parenta1c31b779cdde0090b8efcde87d7d0d898cabd38 (diff)
downloadllvm-7c599d056a41262681aa7fcd771eeed53a8e0bd2.tar.gz
llvm-7c599d056a41262681aa7fcd771eeed53a8e0bd2.tar.bz2
llvm-7c599d056a41262681aa7fcd771eeed53a8e0bd2.tar.xz
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/MC/MCSection.h')
-rw-r--r--include/llvm/MC/MCSection.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/MC/MCSection.h b/include/llvm/MC/MCSection.h
index e73760a066..0669d0f39b 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);
};