summaryrefslogtreecommitdiff
path: root/lib/Target/PIC16/PIC16TargetObjectFile.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-01 21:56:13 +0000
committerChris Lattner <sabre@nondot.org>2009-08-01 21:56:13 +0000
commit824583844a8f334dd261894a3fac7ad476531667 (patch)
tree419cb5597d09db6e29f4a4fcbe62df1c367cf9e8 /lib/Target/PIC16/PIC16TargetObjectFile.cpp
parent94dab1e57a435198bf30c9992805a7d101d5c6c6 (diff)
downloadllvm-824583844a8f334dd261894a3fac7ad476531667.tar.gz
llvm-824583844a8f334dd261894a3fac7ad476531667.tar.bz2
llvm-824583844a8f334dd261894a3fac7ad476531667.tar.xz
fix a fixme by sinking various target-specific directives down into
the appropriate subclasses. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77815 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PIC16/PIC16TargetObjectFile.cpp')
-rw-r--r--lib/Target/PIC16/PIC16TargetObjectFile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/PIC16/PIC16TargetObjectFile.cpp b/lib/Target/PIC16/PIC16TargetObjectFile.cpp
index 78e88ca935..04f2ebf113 100644
--- a/lib/Target/PIC16/PIC16TargetObjectFile.cpp
+++ b/lib/Target/PIC16/PIC16TargetObjectFile.cpp
@@ -19,8 +19,8 @@ void PIC16TargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &tm){
TargetLoweringObjectFile::Initialize(Ctx, tm);
TM = &tm;
- BSSSection_ = getOrCreateSection("udata.# UDATA", false,
- SectionKind::get(SectionKind::BSS));
+ BSSSection = getOrCreateSection("udata.# UDATA", false,
+ SectionKind::get(SectionKind::BSS));
ReadOnlySection = getOrCreateSection("romdata.# ROMDATA", false,
SectionKind::get(SectionKind::ReadOnly));
DataSection = getOrCreateSection("idata.# IDATA", false,