summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2010-03-15 21:09:38 +0000
committerBill Wendling <isanbard@gmail.com>2010-03-15 21:09:38 +0000
commitbbcaa40227528485943781b1ab31a4821ac5c25e (patch)
treed6bbdc7ff35fdc155cde0cb7f62a3df98bff53b7 /llvm/lib/Target/PowerPC/PPCISelLowering.cpp
parent561334a81fc14a15388e94d05aea3c6232620374 (diff)
downloadbcm5719-llvm-bbcaa40227528485943781b1ab31a4821ac5c25e.tar.gz
bcm5719-llvm-bbcaa40227528485943781b1ab31a4821ac5c25e.zip
Now that the default for Darwin platforms is to place the LSDA into the TEXT
section, remove the target-specific code that performs this. llvm-svn: 98580
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCISelLowering.cpp')
-rw-r--r--llvm/lib/Target/PowerPC/PPCISelLowering.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
index 344200f78d9..2c072c1290f 100644
--- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
+++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
@@ -16,7 +16,6 @@
#include "PPCPerfectShuffle.h"
#include "PPCPredicates.h"
#include "PPCTargetMachine.h"
-#include "PPCTargetObjectFile.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/VectorExtras.h"
#include "llvm/CodeGen/CallingConvLower.h"
@@ -60,7 +59,7 @@ cl::desc("enable preincrement load/store generation on PPC (experimental)"),
static TargetLoweringObjectFile *CreateTLOF(const PPCTargetMachine &TM) {
if (TM.getSubtargetImpl()->isDarwin())
- return new PPCMachOTargetObjectFile();
+ return new TargetLoweringObjectFileMachO();
return new TargetLoweringObjectFileELF();
}
OpenPOWER on IntegriCloud