mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
Add triple support for the IBM BG/P and BG/Q supercomputers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153882 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -88,6 +88,8 @@ const char *Triple::getVendorTypeName(VendorType Kind) {
|
||||
case Apple: return "apple";
|
||||
case PC: return "pc";
|
||||
case SCEI: return "scei";
|
||||
case BGP: return "bgp";
|
||||
case BGQ: return "bgq";
|
||||
}
|
||||
|
||||
llvm_unreachable("Invalid VendorType!");
|
||||
@@ -116,6 +118,7 @@ const char *Triple::getOSTypeName(OSType Kind) {
|
||||
case Minix: return "minix";
|
||||
case RTEMS: return "rtems";
|
||||
case NativeClient: return "nacl";
|
||||
case CNK: return "cnk";
|
||||
}
|
||||
|
||||
llvm_unreachable("Invalid OSType");
|
||||
@@ -258,6 +261,8 @@ static Triple::VendorType parseVendor(StringRef VendorName) {
|
||||
.Case("apple", Triple::Apple)
|
||||
.Case("pc", Triple::PC)
|
||||
.Case("scei", Triple::SCEI)
|
||||
.Case("bgp", Triple::BGP)
|
||||
.Case("bgq", Triple::BGQ)
|
||||
.Default(Triple::UnknownVendor);
|
||||
}
|
||||
|
||||
@@ -282,6 +287,7 @@ static Triple::OSType parseOS(StringRef OSName) {
|
||||
.StartsWith("minix", Triple::Minix)
|
||||
.StartsWith("rtems", Triple::RTEMS)
|
||||
.StartsWith("nacl", Triple::NativeClient)
|
||||
.StartsWith("cnk", Triple::CNK)
|
||||
.Default(Triple::UnknownOS);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user