summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM/ARMTargetMachine.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-13 05:30:22 +0000
committerChris Lattner <sabre@nondot.org>2009-08-13 05:30:22 +0000
commiteb681981455ce3ee94e91975ef3f1a286a5bbfc0 (patch)
treedad6fc10dd33a79f8947a292d472069dbac6bb2d /llvm/lib/Target/ARM/ARMTargetMachine.cpp
parenta95379d165baa1212e2776d7a76abcd712c00177 (diff)
downloadbcm5719-llvm-eb681981455ce3ee94e91975ef3f1a286a5bbfc0.tar.gz
bcm5719-llvm-eb681981455ce3ee94e91975ef3f1a286a5bbfc0.zip
fix a minor fixme. When building with SL and later tools, the ".eh" symbols
don't need to be exported from the .o files. llvm-svn: 78892
Diffstat (limited to 'llvm/lib/Target/ARM/ARMTargetMachine.cpp')
-rw-r--r--llvm/lib/Target/ARM/ARMTargetMachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMTargetMachine.cpp b/llvm/lib/Target/ARM/ARMTargetMachine.cpp
index fbc5f38efea..1198aa94b56 100644
--- a/llvm/lib/Target/ARM/ARMTargetMachine.cpp
+++ b/llvm/lib/Target/ARM/ARMTargetMachine.cpp
@@ -32,7 +32,7 @@ static const TargetAsmInfo *createTargetAsmInfo(const Target &T,
Triple TheTriple(TT);
switch (TheTriple.getOS()) {
case Triple::Darwin:
- return new ARMDarwinTargetAsmInfo();
+ return new ARMDarwinTargetAsmInfo(TheTriple);
default:
return new ARMELFTargetAsmInfo();
}
OpenPOWER on IntegriCloud