1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

[TextAPI] update DriverKit string value

String value differed from downstream, where upstream doesn't depend on
casing difference.
<rdar://problem/67106257>
This commit is contained in:
Cyndy Ishida 2020-08-15 06:37:06 -07:00
parent c477d72869
commit 9857d3a9b6

View File

@ -84,7 +84,7 @@ StringRef getPlatformName(PlatformKind Platform) {
case PlatformKind::watchOSSimulator:
return "watchOS Simulator";
case PlatformKind::driverKit:
return "driverKit";
return "DriverKit";
}
llvm_unreachable("Unknown llvm.MachO.PlatformKind enum");
}