diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-08 20:22:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-08 20:22:20 +0000 |
commit | ce7d14032bcf15e616df5310daf551d557c7d788 (patch) | |
tree | 18e896ee6bb63f876b7a86b38ee2c89ed6fb0331 /llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp | |
parent | 302041d5c9e43e0acb3e477e04b0250f6f6477c6 (diff) | |
download | bcm5719-llvm-ce7d14032bcf15e616df5310daf551d557c7d788.tar.gz bcm5719-llvm-ce7d14032bcf15e616df5310daf551d557c7d788.zip |
now that getOrCreateSection is all object-file specific,
give the impls an object-file-specific name. In the future
they can take different arguments etc.
llvm-svn: 78495
Diffstat (limited to 'llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp')
-rw-r--r-- | llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp b/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp index 644b0249ce7..4e2dca1c1ab 100644 --- a/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp +++ b/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp @@ -16,12 +16,9 @@ using namespace llvm; void XCoreTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){ TargetLoweringObjectFileELF::Initialize(Ctx, TM); - TextSection = getOrCreateSection("\t.text", true, - SectionKind::getText()); - DataSection = getOrCreateSection("\t.dp.data", false, - SectionKind::getDataRel()); - BSSSection = getOrCreateSection("\t.dp.bss", false, - SectionKind::getBSS()); + TextSection = getELFSection("\t.text", true, SectionKind::getText()); + DataSection = getELFSection("\t.dp.data", false, SectionKind::getDataRel()); + BSSSection = getELFSection("\t.dp.bss", false, SectionKind::getBSS()); // TLS globals are lowered in the backend to arrays indexed by the current // thread id. After lowering they require no special handling by the linker @@ -31,9 +28,9 @@ void XCoreTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){ if (TM.getSubtarget<XCoreSubtarget>().isXS1A()) // FIXME: Why is this writable ("datarel")??? - ReadOnlySection = getOrCreateSection("\t.dp.rodata", false, - SectionKind::getDataRel()); + ReadOnlySection = getELFSection("\t.dp.rodata", false, + SectionKind::getDataRel()); else - ReadOnlySection = getOrCreateSection("\t.cp.rodata", false, - SectionKind::getReadOnly()); + ReadOnlySection = getELFSection("\t.cp.rodata", false, + SectionKind::getReadOnly()); } |