diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-03-15 21:09:38 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-03-15 21:09:38 +0000 |
commit | bbcaa40227528485943781b1ab31a4821ac5c25e (patch) | |
tree | d6bbdc7ff35fdc155cde0cb7f62a3df98bff53b7 /llvm/lib/Target/ARM/ARMISelLowering.cpp | |
parent | 561334a81fc14a15388e94d05aea3c6232620374 (diff) | |
download | bcm5719-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/ARM/ARMISelLowering.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp index ac210685c06..5fae975ff74 100644 --- a/llvm/lib/Target/ARM/ARMISelLowering.cpp +++ b/llvm/lib/Target/ARM/ARMISelLowering.cpp @@ -130,7 +130,7 @@ void ARMTargetLowering::addQRTypeForNEON(EVT VT) { static TargetLoweringObjectFile *createTLOF(TargetMachine &TM) { if (TM.getSubtarget<ARMSubtarget>().isTargetDarwin()) - return new ARMMachOTargetObjectFile(); + return new TargetLoweringObjectFileMachO(); return new ARMElfTargetObjectFile(); } |