summaryrefslogtreecommitdiff
path: root/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
commitcea01bfe7d764714d13079014f7d812c8b66b202 (patch)
tree34c029f2c09803ec70d7de48c68c7a68111f21f4 /lib/Target/XCore/XCoreTargetObjectFile.cpp
parent824583844a8f334dd261894a3fac7ad476531667 (diff)
downloadllvm-cea01bfe7d764714d13079014f7d812c8b66b202.tar.gz
llvm-cea01bfe7d764714d13079014f7d812c8b66b202.tar.bz2
llvm-cea01bfe7d764714d13079014f7d812c8b66b202.tar.xz
update for rename
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77817 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/XCore/XCoreTargetObjectFile.cpp')
-rw-r--r--lib/Target/XCore/XCoreTargetObjectFile.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/XCore/XCoreTargetObjectFile.cpp b/lib/Target/XCore/XCoreTargetObjectFile.cpp
index 0f2c6a39ba..e4d83dd531 100644
--- a/lib/Target/XCore/XCoreTargetObjectFile.cpp
+++ b/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")???