[macCatalyst] Use macCatalyst pretty name in .build_version darwin
authorAlex Lorenz <arphaman@gmail.com>
Fri, 12 Jul 2019 22:06:08 +0000 (22:06 +0000)
committerAlex Lorenz <arphaman@gmail.com>
Fri, 12 Jul 2019 22:06:08 +0000 (22:06 +0000)
assembly command

'macCatalyst' is more readable than 'maccatalyst'. I renamed the objdump output,
but the assembly should match it as well.

llvm-svn: 365964

llvm/lib/MC/MCAsmStreamer.cpp
llvm/lib/MC/MCParser/DarwinAsmParser.cpp
llvm/test/CodeGen/X86/macCatalyst.ll
llvm/test/MC/MachO/build-version-maccatalyst.s

index a78092e..7e8f02e 100644 (file)
@@ -541,7 +541,7 @@ static const char *getPlatformName(MachO::PlatformType Type) {
   case MachO::PLATFORM_TVOS:             return "tvos";
   case MachO::PLATFORM_WATCHOS:          return "watchos";
   case MachO::PLATFORM_BRIDGEOS:         return "bridgeos";
-  case MachO::PLATFORM_MACCATALYST:      return "maccatalyst";
+  case MachO::PLATFORM_MACCATALYST:      return "macCatalyst";
   case MachO::PLATFORM_IOSSIMULATOR:     return "iossimulator";
   case MachO::PLATFORM_TVOSSIMULATOR:    return "tvossimulator";
   case MachO::PLATFORM_WATCHOSSIMULATOR: return "watchossimulator";
index 1b5b012..1160934 100644 (file)
@@ -1169,7 +1169,7 @@ bool DarwinAsmParser::parseBuildVersion(StringRef Directive, SMLoc Loc) {
     .Case("ios", MachO::PLATFORM_IOS)
     .Case("tvos", MachO::PLATFORM_TVOS)
     .Case("watchos", MachO::PLATFORM_WATCHOS)
-    .Case("maccatalyst", MachO::PLATFORM_MACCATALYST)
+    .Case("macCatalyst", MachO::PLATFORM_MACCATALYST)
     .Default(0);
   if (Platform == 0)
     return Error(PlatformLoc, "unknown platform name");
index 7a126f1..fbf3af5 100644 (file)
@@ -1,3 +1,3 @@
 ; RUN: llc %s -o - | FileCheck %s
 target triple="x86_64-apple-ios13.0-macabi"
-; CHECK: .build_version maccatalyst, 13, 0
+; CHECK: .build_version macCatalyst, 13, 0
index 9056780..aff5589 100644 (file)
@@ -1,4 +1,4 @@
 // RUN: llvm-mc -triple x86_64-apple-ios %s | FileCheck %s
 
-.build_version maccatalyst,13,0
-// CHECK: .build_version maccatalyst, 13, 0
+.build_version macCatalyst,13,0
+// CHECK: .build_version macCatalyst, 13, 0