Fix sorting. Spotted by emaste.

llvm-svn: 228549
This commit is contained in:
Justin Hibbits 2015-02-08 21:34:29 +00:00
parent 2559abdaa1
commit f9ee7e4ceb
1 changed files with 1 additions and 1 deletions

View File

@ -378,8 +378,8 @@ HostInfoBase::ComputeHostArchitectureSupport(ArchSpec &arch_32, ArchSpec &arch_6
arch_32.SetTriple(triple);
break;
case llvm::Triple::x86_64:
case llvm::Triple::ppc64:
case llvm::Triple::x86_64:
arch_64.SetTriple(triple);
arch_32.SetTriple(triple.get32BitArchVariant());
break;