summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-01 22:06:53 +0000
committerChris Lattner <sabre@nondot.org>2009-08-01 22:06:53 +0000
commit5aa4952625b007e5d5a26772d4f654f2e74e0175 (patch)
tree6adb90409f217615edbeeaee7912e99125035280 /llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp
parentd5c01136ef003e4b2de85d18d9897fab621e1c14 (diff)
downloadbcm5719-llvm-5aa4952625b007e5d5a26772d4f654f2e74e0175.tar.gz
bcm5719-llvm-5aa4952625b007e5d5a26772d4f654f2e74e0175.zip
update for rename
llvm-svn: 77817
Diffstat (limited to 'llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp')
-rw-r--r--llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp b/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp
index 0f2c6a39ba6..e4d83dd5318 100644
--- a/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp
+++ b/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp
@@ -20,14 +20,14 @@ void XCoreTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){
SectionKind::get(SectionKind::Text));
DataSection = getOrCreateSection("\t.dp.data", false,
SectionKind::get(SectionKind::DataRel));
- BSSSection_ = getOrCreateSection("\t.dp.bss", false,
- SectionKind::get(SectionKind::BSS));
+ BSSSection = getOrCreateSection("\t.dp.bss", false,
+ SectionKind::get(SectionKind::BSS));
// 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
// and can be placed in the standard data / bss sections.
TLSDataSection = DataSection;
- TLSBSSSection = BSSSection_;
+ TLSBSSSection = BSSSection;
if (TM.getSubtarget<XCoreSubtarget>().isXS1A())
// FIXME: Why is this writable ("datarel")???
OpenPOWER on IntegriCloud