mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Oops, forgot XCore. Sorry XCore!
llvm-svn: 77125
This commit is contained in:
parent
6b705e3a64
commit
1c59fa86e2
@ -49,6 +49,7 @@ public:
|
||||
thumb, // thumb, thumbv.*
|
||||
x86, // i[3-9]86
|
||||
x86_64, // amd64, x86_64
|
||||
xcore, // xcore
|
||||
|
||||
InvalidArch
|
||||
};
|
||||
|
@ -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>";
|
||||
|
Loading…
Reference in New Issue
Block a user