diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-07-19 21:44:57 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-07-19 21:44:57 +0000 |
commit | badd8df972e158548d7014a193e44ff1bce55686 (patch) | |
tree | 564fd18a51ac55cc63a335d6030c97ce9985d3fc /lib/Target/PowerPC/PPCTargetMachine.cpp | |
parent | a7360f0178327e1ef4b1789612dbded46a704156 (diff) |
Unbreak build: 'DarwinTargetAsmInfo' was already taken as PPC TAI flavour.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53801 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCTargetMachine.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCTargetMachine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/PowerPC/PPCTargetMachine.cpp b/lib/Target/PowerPC/PPCTargetMachine.cpp index cfec534ac2..8fa0809c1a 100644 --- a/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -27,9 +27,9 @@ Y("ppc64", " PowerPC 64"); const TargetAsmInfo *PPCTargetMachine::createTargetAsmInfo() const { if (Subtarget.isDarwin()) - return new DarwinTargetAsmInfo(*this); + return new PPCDarwinTargetAsmInfo(*this); else - return new LinuxTargetAsmInfo(*this); + return new PPCLinuxTargetAsmInfo(*this); } unsigned PPC32TargetMachine::getJITMatchQuality() { |