diff options
Diffstat (limited to 'llvm/lib/TextAPI/Platform.cpp')
-rw-r--r-- | llvm/lib/TextAPI/Platform.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/TextAPI/Platform.cpp b/llvm/lib/TextAPI/Platform.cpp index 2e6b885..038ad9d 100644 --- a/llvm/lib/TextAPI/Platform.cpp +++ b/llvm/lib/TextAPI/Platform.cpp @@ -29,7 +29,7 @@ PlatformKind mapToPlatformKind(PlatformKind Platform, bool WantSim) { case PlatformKind::watchOS: return WantSim ? PlatformKind::watchOSSimulator : PlatformKind::watchOS; } - llvm_unreachable("Unknown llvm.MachO.PlatformKind enum"); + llvm_unreachable("Unknown llvm::MachO::PlatformKind enum"); } PlatformKind mapToPlatformKind(const Triple &Target) { @@ -87,7 +87,7 @@ StringRef getPlatformName(PlatformKind Platform) { case PlatformKind::driverKit: return "DriverKit"; } - llvm_unreachable("Unknown llvm.MachO.PlatformKind enum"); + llvm_unreachable("Unknown llvm::MachO::PlatformKind enum"); } PlatformKind getPlatformFromName(StringRef Name) { |