summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM/ARMTargetMachine.cpp
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2008-09-24 22:22:27 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2008-09-24 22:22:27 +0000
commita9163feefede7593101ffd59557cedaaff2674a4 (patch)
tree365866952011dd7db2d39a8555362ee1f3a8d53f /llvm/lib/Target/ARM/ARMTargetMachine.cpp
parent237f087eb94d3ac57bee2eb6a845297f8af8dbc5 (diff)
downloadbcm5719-llvm-a9163feefede7593101ffd59557cedaaff2674a4.tar.gz
bcm5719-llvm-a9163feefede7593101ffd59557cedaaff2674a4.zip
Get rid of virtual inheritance for ARM TAI
llvm-svn: 56587
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 061307837f2..29a9d848663 100644
--- a/llvm/lib/Target/ARM/ARMTargetMachine.cpp
+++ b/llvm/lib/Target/ARM/ARMTargetMachine.cpp
@@ -120,7 +120,7 @@ const TargetAsmInfo *ARMTargetMachine::createTargetAsmInfo() const {
case ARMSubtarget::isELF:
return new ARMELFTargetAsmInfo(*this);
default:
- return new ARMTargetAsmInfo(*this);
+ return new ARMGenericTargetAsmInfo(*this);
}
}
OpenPOWER on IntegriCloud