update for rename
authorChris Lattner <sabre@nondot.org>
Sat, 1 Aug 2009 22:06:53 +0000 (22:06 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 1 Aug 2009 22:06:53 +0000 (22:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77817 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/XCore/XCoreTargetObjectFile.cpp

index 0f2c6a39ba6ccc78c1f6a22fedf2fb4cb5c63201..e4d83dd53189b34f9e2e7372a15c518a0d30a70e 100644 (file)
@@ -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")???