From 85d381eb02a2627c570ab99a4c586d279c012abd Mon Sep 17 00:00:00 2001 From: Cyndy Ishida Date: Sat, 15 Aug 2020 06:37:06 -0700 Subject: [PATCH] [TextAPI] update DriverKit string value String value differed from downstream, where upstream doesn't depend on casing difference. --- llvm/lib/TextAPI/MachO/Platform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/TextAPI/MachO/Platform.cpp b/llvm/lib/TextAPI/MachO/Platform.cpp index a13d569..f454c1c 100644 --- a/llvm/lib/TextAPI/MachO/Platform.cpp +++ b/llvm/lib/TextAPI/MachO/Platform.cpp @@ -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"); } -- 2.7.4