diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-06-16 21:46:01 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-06-16 21:46:01 +0000 |
commit | 2d5f363d6df85014380ba11d1923a6bf8277262c (patch) | |
tree | b0615a687e18d8cd44b20f2f582ea50269ad38eb /clang/lib | |
parent | 79c459932b409b6039add2fb0bbfae6ce38f7713 (diff) | |
download | bcm5719-llvm-2d5f363d6df85014380ba11d1923a6bf8277262c.tar.gz bcm5719-llvm-2d5f363d6df85014380ba11d1923a6bf8277262c.zip |
Fix typo in prev commit.
llvm-svn: 73556
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/Driver/HostInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Driver/HostInfo.cpp b/clang/lib/Driver/HostInfo.cpp index daac0cb0b64..831e11b98e4 100644 --- a/clang/lib/Driver/HostInfo.cpp +++ b/clang/lib/Driver/HostInfo.cpp @@ -122,7 +122,7 @@ ToolChain *DarwinHostInfo::getToolChain(const ArgList &Args, // the ID based Triple interface. if (Arch == "ppc") Arch = "powerpc"; - else if (Arch == "powerpc") + else if (Arch == "ppc64") Arch = "powerpc64"; } else { // Otherwise default to the arch of the host. |