aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/PIC16
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
commita3954e64975c45afb268d08d633afe1e05ef7fb5 (patch)
tree419cb5597d09db6e29f4a4fcbe62df1c367cf9e8 /lib/Target/PIC16
parent1a06130ad5b74331d8081d5088d8a54297a4b52d (diff)
downloadexternal_llvm-a3954e64975c45afb268d08d633afe1e05ef7fb5.zip
external_llvm-a3954e64975c45afb268d08d633afe1e05ef7fb5.tar.gz
external_llvm-a3954e64975c45afb268d08d633afe1e05ef7fb5.tar.bz2
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')
-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 78e88ca..04f2ebf 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,