diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-04-08 21:34:17 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-04-08 21:34:17 +0000 |
| commit | cfe06853d4488b6781a85f36ec2dfb1ecdbc056a (patch) | |
| tree | 6dbc0eeb34446d96ae16a602e69fea256fc7d32d /lib/Target/Mips | |
| parent | 6ef20139861731c45fec88b644d7316e9468a26e (diff) | |
| download | external_llvm-cfe06853d4488b6781a85f36ec2dfb1ecdbc056a.zip external_llvm-cfe06853d4488b6781a85f36ec2dfb1ecdbc056a.tar.gz external_llvm-cfe06853d4488b6781a85f36ec2dfb1ecdbc056a.tar.bz2 | |
delete a forwarding function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100815 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips')
| -rw-r--r-- | lib/Target/Mips/MipsTargetObjectFile.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/Target/Mips/MipsTargetObjectFile.cpp b/lib/Target/Mips/MipsTargetObjectFile.cpp index 0fb423d..405f419 100644 --- a/lib/Target/Mips/MipsTargetObjectFile.cpp +++ b/lib/Target/Mips/MipsTargetObjectFile.cpp @@ -11,6 +11,7 @@ #include "MipsSubtarget.h" #include "llvm/DerivedTypes.h" #include "llvm/GlobalVariable.h" +#include "llvm/MC/MCContext.h" #include "llvm/MC/MCSectionELF.h" #include "llvm/Target/TargetData.h" #include "llvm/Target/TargetMachine.h" @@ -26,14 +27,14 @@ void MipsTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){ TargetLoweringObjectFileELF::Initialize(Ctx, TM); SmallDataSection = - getELFSection(".sdata", MCSectionELF::SHT_PROGBITS, - MCSectionELF::SHF_WRITE | MCSectionELF::SHF_ALLOC, - SectionKind::getDataRel()); + getContext().getELFSection(".sdata", MCSectionELF::SHT_PROGBITS, + MCSectionELF::SHF_WRITE |MCSectionELF::SHF_ALLOC, + SectionKind::getDataRel()); SmallBSSSection = - getELFSection(".sbss", MCSectionELF::SHT_NOBITS, - MCSectionELF::SHF_WRITE | MCSectionELF::SHF_ALLOC, - SectionKind::getBSS()); + getContext().getELFSection(".sbss", MCSectionELF::SHT_NOBITS, + MCSectionELF::SHF_WRITE |MCSectionELF::SHF_ALLOC, + SectionKind::getBSS()); } |
