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 | 8c2f1d7e44d214bc2242a8c6faa4b624b3876540 (patch) | |
tree | be1abdabdec386e41591cd733fb111a189cd5780 /lib/Support/Triple.cpp | |
parent | 6337f15b5a73c3eeb644d59cf34d37d4a278f5f7 (diff) |
Oops, forgot XCore. Sorry XCore!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77125 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Triple.cpp')
-rw-r--r-- | lib/Support/Triple.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Support/Triple.cpp b/lib/Support/Triple.cpp index 89d95ca15f..af372e2da6 100644 --- a/lib/Support/Triple.cpp +++ b/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>"; |