diff options
Diffstat (limited to 'contrib/llvm-project/llvm/lib/TextAPI/MachO/Target.cpp')
-rw-r--r-- | contrib/llvm-project/llvm/lib/TextAPI/MachO/Target.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/llvm-project/llvm/lib/TextAPI/MachO/Target.cpp b/contrib/llvm-project/llvm/lib/TextAPI/MachO/Target.cpp index aee8ef421425..6f8d9bb4e19a 100644 --- a/contrib/llvm-project/llvm/lib/TextAPI/MachO/Target.cpp +++ b/contrib/llvm-project/llvm/lib/TextAPI/MachO/Target.cpp @@ -33,6 +33,7 @@ Expected<Target> Target::create(StringRef TargetValue) { .Case("ios-simulator", PlatformKind::iOSSimulator) .Case("tvos-simulator", PlatformKind::tvOSSimulator) .Case("watchos-simulator", PlatformKind::watchOSSimulator) + .Case("driverkit", PlatformKind::driverKit) .Default(PlatformKind::unknown); if (Platform == PlatformKind::unknown) { |