diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-07-26 04:52:45 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-26 04:52:45 +0000 |
| commit | bd481a119c5c69b4f8ede1db221327a415d010af (patch) | |
| tree | 44c3cc07bdf658a5146a499d3a834acbcc157f02 /llvm/lib/Support | |
| parent | 172649be2cfea64a2966f57883f80767170bbf61 (diff) | |
| download | bcm5719-llvm-bd481a119c5c69b4f8ede1db221327a415d010af.tar.gz bcm5719-llvm-bd481a119c5c69b4f8ede1db221327a415d010af.zip | |
Oops, forgot XCore. Sorry XCore!
llvm-svn: 77125
Diffstat (limited to 'llvm/lib/Support')
| -rw-r--r-- | llvm/lib/Support/Triple.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Support/Triple.cpp b/llvm/lib/Support/Triple.cpp index 89d95ca15fb..af372e2da6e 100644 --- a/llvm/lib/Support/Triple.cpp +++ b/llvm/lib/Support/Triple.cpp @@ -27,13 +27,14 @@ const char *Triple::getArchTypeName(ArchType Kind) { case mips: return "mips"; case mipsel: return "mipsel"; case msp430: return "msp430"; + case ppc64: return "powerpc64"; + case ppc: return "powerpc"; case sparc: return "sparc"; case systemz: return "s390x"; case thumb: return "thumb"; case x86: return "i386"; case x86_64: return "x86_64"; - case ppc: return "powerpc"; - case ppc64: return "powerpc64"; + case xcore: return "xcore"; } return "<invalid>"; |

