commit | cb7e1e133101c0bf5f263dee68f07a5227ab6162 | [log] [tgz] |
---|---|---|
author | Daniel Dunbar <daniel@zuster.org> | Tue Jun 16 21:46:01 2009 +0000 |
committer | Daniel Dunbar <daniel@zuster.org> | Tue Jun 16 21:46:01 2009 +0000 |
tree | 5195c1fa88efe3d45a41dadc1535e728feab238f | |
parent | 5b518b4416f824afdb6c0537c380e65704b501ad [diff] [blame] |
Fix typo in prev commit. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@73556 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Driver/HostInfo.cpp b/lib/Driver/HostInfo.cpp index daac0cb..831e11b 100644 --- a/lib/Driver/HostInfo.cpp +++ b/lib/Driver/HostInfo.cpp
@@ -122,7 +122,7 @@ // 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.