diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-22 21:03:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-22 21:03:30 +0000 |
commit | 2807afa664b579af4c559b3880d6763b9e7e236a (patch) | |
tree | 96d7c8a96f8ff523a16dd03477ff5e311396727e /lib/Target/PowerPC/PPCTargetMachine.cpp | |
parent | c2264596b76e248a0ec40e495cc904cb9d5a9a3a (diff) |
rename COFFMCAsmInfo -> MCAsmInfoCOFF, likewise for darwin.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79773 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCTargetMachine.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCTargetMachine.cpp b/lib/Target/PowerPC/PPCTargetMachine.cpp index de3a3d0b70..3371954c30 100644 --- a/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -25,7 +25,7 @@ static const MCAsmInfo *createMCAsmInfo(const Target &T, Triple TheTriple(TT); bool isPPC64 = TheTriple.getArch() == Triple::ppc64; if (TheTriple.getOS() == Triple::Darwin) - return new PPCDarwinMCAsmInfo(isPPC64); + return new PPCMCAsmInfoDarwin(isPPC64); return new PPCLinuxMCAsmInfo(isPPC64); } |