[llvm-commits] [llvm] r77817 - /llvm/trunk/lib/Target/XCore/XCoreTargetObjectFile.cpp
Chris Lattner
sabre at nondot.org
Sat Aug 1 15:06:55 PDT 2009
Author: lattner
Date: Sat Aug 1 17:06:53 2009
New Revision: 77817
URL: http://llvm.org/viewvc/llvm-project?rev=77817&view=rev
Log:
update for rename
Modified:
llvm/trunk/lib/Target/XCore/XCoreTargetObjectFile.cpp
Modified: llvm/trunk/lib/Target/XCore/XCoreTargetObjectFile.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/XCore/XCoreTargetObjectFile.cpp?rev=77817&r1=77816&r2=77817&view=diff
==============================================================================
--- llvm/trunk/lib/Target/XCore/XCoreTargetObjectFile.cpp (original)
+++ llvm/trunk/lib/Target/XCore/XCoreTargetObjectFile.cpp Sat Aug 1 17:06:53 2009
@@ -20,14 +20,14 @@
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")???
More information about the llvm-commits
mailing list