aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/MC
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
commita551f8a67e6fccf4487abf62c2a5eba9db990a35 (patch)
treeb65bb7aaa199fb900f27e00950af39612a9eccda /include/llvm/MC
parentb059d5d8d70f5a44d2f8273d439353c0eb39f093 (diff)
downloadexternal_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/MC')
-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 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);
};