Skip to content

[X86] Support -march=diamondrapids #113881

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Nov 18, 2024
Merged

Conversation

FreddyLeaf
Copy link
Contributor

@llvmbot llvmbot added clang Clang issues not falling into any other category compiler-rt backend:X86 clang:driver 'clang' and 'clang++' user-facing binaries. Not 'clang-cl' clang:frontend Language frontend issues, e.g. anything involving "Sema" compiler-rt:builtins labels Oct 28, 2024
@llvmbot
Copy link
Member

llvmbot commented Oct 28, 2024

@llvm/pr-subscribers-backend-x86

@llvm/pr-subscribers-clang

Author: Freddy Ye (FreddyLeaf)

Changes

Ref.: https://cdrdv2.intel.com/v1/dl/getContent/671368


Full diff: https://github.com/llvm/llvm-project/pull/113881.diff

14 Files Affected:

  • (modified) clang/lib/Basic/Targets/X86.cpp (+2)
  • (modified) clang/test/CodeGen/attr-cpuspecific-cpus.c (+1)
  • (modified) clang/test/CodeGen/attr-target-mv.c (+1)
  • (modified) clang/test/CodeGen/target-builtin-noerror.c (+1)
  • (modified) clang/test/Driver/x86-march.c (+4)
  • (modified) clang/test/Misc/target-invalid-cpu-note/x86.c (+4)
  • (modified) clang/test/Preprocessor/predefined-arch-macros.c (+42)
  • (modified) compiler-rt/lib/builtins/cpu_model/x86.c (+14)
  • (modified) llvm/include/llvm/TargetParser/X86TargetParser.def (+1)
  • (modified) llvm/include/llvm/TargetParser/X86TargetParser.h (+1)
  • (modified) llvm/lib/Target/X86/X86.td (+24)
  • (modified) llvm/lib/TargetParser/Host.cpp (+13)
  • (modified) llvm/lib/TargetParser/X86TargetParser.cpp (+8)
  • (modified) llvm/test/CodeGen/X86/cpus-intel.ll (+2)
diff --git a/clang/lib/Basic/Targets/X86.cpp b/clang/lib/Basic/Targets/X86.cpp
index d067ec218b5270..7787bbde513dcf 100644
--- a/clang/lib/Basic/Targets/X86.cpp
+++ b/clang/lib/Basic/Targets/X86.cpp
@@ -649,6 +649,7 @@ void X86TargetInfo::getTargetDefines(const LangOptions &Opts,
   case CK_GraniterapidsD:
   case CK_Emeraldrapids:
   case CK_Clearwaterforest:
+  case CK_DiamondRapids:
     // FIXME: Historically, we defined this legacy name, it would be nice to
     // remove it at some point. We've never exposed fine-grained names for
     // recent primary x86 CPUs, and we should keep it that way.
@@ -1613,6 +1614,7 @@ std::optional<unsigned> X86TargetInfo::getCPUCacheLineSize() const {
     case CK_GraniterapidsD:
     case CK_Emeraldrapids:
     case CK_Clearwaterforest:
+    case CK_DiamondRapids:
     case CK_KNL:
     case CK_KNM:
     // K7
diff --git a/clang/test/CodeGen/attr-cpuspecific-cpus.c b/clang/test/CodeGen/attr-cpuspecific-cpus.c
index dd154fd227b25b..1dd095ec9e191f 100644
--- a/clang/test/CodeGen/attr-cpuspecific-cpus.c
+++ b/clang/test/CodeGen/attr-cpuspecific-cpus.c
@@ -43,6 +43,7 @@ ATTR(cpu_specific(icelake_client)) void CPU(void){}
 ATTR(cpu_specific(tigerlake)) void CPU(void){}
 ATTR(cpu_specific(alderlake)) void CPU(void){}
 ATTR(cpu_specific(sapphirerapids)) void CPU(void){}
+ATTR(cpu_specific(diamondrapids)) void CPU(void){}
 
 // ALIAS CPUs
 ATTR(cpu_specific(pentium_iii_no_xmm_regs)) void CPU0(void){}
diff --git a/clang/test/CodeGen/attr-target-mv.c b/clang/test/CodeGen/attr-target-mv.c
index 2c4b95ca04370a..6911b55203b7e7 100644
--- a/clang/test/CodeGen/attr-target-mv.c
+++ b/clang/test/CodeGen/attr-target-mv.c
@@ -29,6 +29,7 @@ int __attribute__((target("arch=lunarlake"))) foo(void) {return 23;}
 int __attribute__((target("arch=gracemont"))) foo(void) {return 24;}
 int __attribute__((target("arch=pantherlake"))) foo(void) {return 25;}
 int __attribute__((target("arch=clearwaterforest"))) foo(void) {return 26;}
+int __attribute__((target("arch=diamondrapids"))) foo(void) {return 27;}
 int __attribute__((target("default"))) foo(void) { return 2; }
 
 int bar(void) {
diff --git a/clang/test/CodeGen/target-builtin-noerror.c b/clang/test/CodeGen/target-builtin-noerror.c
index 1e53621bc6b5ae..0bbd8c3e5ddd81 100644
--- a/clang/test/CodeGen/target-builtin-noerror.c
+++ b/clang/test/CodeGen/target-builtin-noerror.c
@@ -209,4 +209,5 @@ void verifycpustrings(void) {
   (void)__builtin_cpu_is("znver3");
   (void)__builtin_cpu_is("znver4");
   (void)__builtin_cpu_is("znver5");
+  (void)__builtin_cpu_is("diamondrapids");
 }
diff --git a/clang/test/Driver/x86-march.c b/clang/test/Driver/x86-march.c
index 3bc2a82ae778d6..341f01c8d668df 100644
--- a/clang/test/Driver/x86-march.c
+++ b/clang/test/Driver/x86-march.c
@@ -120,6 +120,10 @@
 // RUN:   | FileCheck %s -check-prefix=clearwaterforest
 // clearwaterforest: "-target-cpu" "clearwaterforest"
 //
+// RUN: %clang -target x86_64-unknown-unknown -c -### %s -march=diamondrapids 2>&1 \
+// RUN:   | FileCheck %s -check-prefix=diamondrapids
+// diamondrapids: "-target-cpu" "diamondrapids"
+//
 // RUN: %clang -target x86_64-unknown-unknown -c -### %s -march=lakemont 2>&1 \
 // RUN:   | FileCheck %s -check-prefix=lakemont
 // lakemont: "-target-cpu" "lakemont"
diff --git a/clang/test/Misc/target-invalid-cpu-note/x86.c b/clang/test/Misc/target-invalid-cpu-note/x86.c
index 7879676040af46..f89cdc2aa573ff 100644
--- a/clang/test/Misc/target-invalid-cpu-note/x86.c
+++ b/clang/test/Misc/target-invalid-cpu-note/x86.c
@@ -69,6 +69,7 @@
 // X86-SAME: {{^}}, graniterapids-d
 // X86-SAME: {{^}}, emeraldrapids
 // X86-SAME: {{^}}, clearwaterforest
+// X86-SAME: {{^}}, diamondrapids
 // X86-SAME: {{^}}, knl
 // X86-SAME: {{^}}, knm
 // X86-SAME: {{^}}, lakemont
@@ -155,6 +156,7 @@
 // X86_64-SAME: {{^}}, graniterapids-d
 // X86_64-SAME: {{^}}, emeraldrapids
 // X86_64-SAME: {{^}}, clearwaterforest
+// X86_64-SAME: {{^}}, diamondrapids
 // X86_64-SAME: {{^}}, knl
 // X86_64-SAME: {{^}}, knm
 // X86_64-SAME: {{^}}, k8
@@ -250,6 +252,7 @@
 // TUNE_X86-SAME: {{^}}, graniterapids-d
 // TUNE_X86-SAME: {{^}}, emeraldrapids
 // TUNE_X86-SAME: {{^}}, clearwaterforest
+// TUNE_X86-SAME: {{^}}, diamondrapids
 // TUNE_X86-SAME: {{^}}, knl
 // TUNE_X86-SAME: {{^}}, knm
 // TUNE_X86-SAME: {{^}}, lakemont
@@ -352,6 +355,7 @@
 // TUNE_X86_64-SAME: {{^}}, graniterapids-d
 // TUNE_X86_64-SAME: {{^}}, emeraldrapids
 // TUNE_X86_64-SAME: {{^}}, clearwaterforest
+// TUNE_X86_64-SAME: {{^}}, diamondrapids
 // TUNE_X86_64-SAME: {{^}}, knl
 // TUNE_X86_64-SAME: {{^}}, knm
 // TUNE_X86_64-SAME: {{^}}, lakemont
diff --git a/clang/test/Preprocessor/predefined-arch-macros.c b/clang/test/Preprocessor/predefined-arch-macros.c
index 35801e758cc58a..41bec61079d827 100644
--- a/clang/test/Preprocessor/predefined-arch-macros.c
+++ b/clang/test/Preprocessor/predefined-arch-macros.c
@@ -1867,6 +1867,9 @@
 // RUN: %clang -march=graniterapids-d -m32 -E -dM %s -o - 2>&1 \
 // RUN:     --target=i386 \
 // RUN:   | FileCheck -match-full-lines %s -check-prefixes=CHECK_GNR_M32,CHECK_GNRD_M32
+// RUN: %clang -march=diamondrapids -m32 -E -dM %s -o - 2>&1 \
+// RUN:     --target=i386 \
+// RUN:   | FileCheck -match-full-lines %s -check-prefixes=CHECK_GNR_M32,CHECK_GNRD_M32,CHECK_DMR_M32
 // CHECK_GNR_M32: #define __AES__ 1
 // CHECK_GNR_M32: #define __AMX_BF16__ 1
 // CHECK_GNR_M32-NOT: #define __AMX_COMPLEX__ 1
@@ -1874,6 +1877,8 @@
 // CHECK_GNR_M32: #define __AMX_FP16__ 1
 // CHECK_GNR_M32: #define __AMX_INT8__ 1
 // CHECK_GNR_M32: #define __AMX_TILE__ 1
+// CHECK_DMR_M32: #define __AVX10_2_512__ 1
+// CHECK_DMR_M32: #define __AVX10_2__ 1
 // CHECK_GNR_M32: #define __AVX2__ 1
 // CHECK_GNR_M32: #define __AVX512BF16__ 1
 // CHECK_GNR_M32: #define __AVX512BITALG__ 1
@@ -1888,13 +1893,21 @@
 // CHECK_GNR_M32: #define __AVX512VL__ 1
 // CHECK_GNR_M32: #define __AVX512VNNI__ 1
 // CHECK_GNR_M32: #define __AVX512VPOPCNTDQ__ 1
+// CHECK_DMR_M32: #define __AVXIFMA__ 1
+// CHECK_DMR_M32: #define __AVXNECONVERT__ 1
+// CHECK_DMR_M32: #define __AVXVNNIINT16__ 1
+// CHECK_DMR_M32: #define __AVXVNNIINT8__ 1
 // CHECK_GNR_M32: #define __AVXVNNI__ 1
 // CHECK_GNR_M32: #define __AVX__ 1
 // CHECK_GNR_M32: #define __BMI2__ 1
 // CHECK_GNR_M32: #define __BMI__ 1
+// CHECK_DMR_M32: #define __CCMP__ 1
+// CHECK_DMR_M32: #define __CF__ 1
 // CHECK_GNR_M32: #define __CLDEMOTE__ 1
 // CHECK_GNR_M32: #define __CLFLUSHOPT__ 1
 // CHECK_GNR_M32: #define __CLWB__ 1
+// CHECK_DMR_M32: #define __CMPCCXADD__ 1
+// CHECK_DMR_M32: #define __EGPR__ 1
 // CHECK_GNR_M32: #define __ENQCMD__ 1
 // CHECK_GNR_M32: #define __EVEX256__ 1
 // CHECK_GNR_M32: #define __EVEX512__ 1
@@ -1905,20 +1918,27 @@
 // CHECK_GNR_M32: #define __LZCNT__ 1
 // CHECK_GNR_M32: #define __MMX__ 1
 // CHECK_GNR_M32: #define __MOVBE__ 1
+// CHECK_DMR_M32: #define __NDD__ 1
+// CHECK_DMR_M32: #define __NF__ 1
 // CHECK_GNR_M32: #define __PCLMUL__ 1
 // CHECK_GNR_M32: #define __PCONFIG__ 1
 // CHECK_GNR_M32: #define __PKU__ 1
 // CHECK_GNR_M32: #define __POPCNT__ 1
+// CHECK_DMR_M32: #define __PPX__ 1
 // CHECK_GNR_M32: #define __PREFETCHI__ 1
 // CHECK_GNR_M32: #define __PRFCHW__ 1
 // CHECK_GNR_M32: #define __PTWRITE__ 1
+// CHECK_DMR_M32: #define __PUSH2POP2__ 1
 // CHECK_GNR_M32: #define __RDPID__ 1
 // CHECK_GNR_M32: #define __RDRND__ 1
 // CHECK_GNR_M32: #define __RDSEED__ 1
 // CHECK_GNR_M32: #define __SERIALIZE__ 1
 // CHECK_GNR_M32: #define __SGX__ 1
+// CHECK_DMR_M32: #define __SHA512__ 1
 // CHECK_GNR_M32: #define __SHA__ 1
 // CHECK_GNR_M32: #define __SHSTK__ 1
+// CHECK_DMR_M32: #define __SM3__ 1
+// CHECK_DMR_M32: #define __SM4__ 1
 // CHECK_GNR_M32: #define __SSE2__ 1
 // CHECK_GNR_M32: #define __SSE3__ 1
 // CHECK_GNR_M32: #define __SSE4_1__ 1
@@ -1935,6 +1955,7 @@
 // CHECK_GNR_M32: #define __XSAVEOPT__ 1
 // CHECK_GNR_M32: #define __XSAVES__ 1
 // CHECK_GNR_M32: #define __XSAVE__ 1
+// CHECK_DMR_M32: #define __ZU__ 1
 // CHECK_GNR_M32: #define __corei7 1
 // CHECK_GNR_M32: #define __corei7__ 1
 // CHECK_GNR_M32: #define __i386 1
@@ -1948,6 +1969,9 @@
 // RUN: %clang -march=graniterapids-d -m64 -E -dM %s -o - 2>&1 \
 // RUN:     --target=x86_64 \
 // RUN:   | FileCheck -match-full-lines %s -check-prefixes=CHECK_GNR_M64,CHECK_GNRD_M64
+// RUN: %clang -march=diamondrapids -m64 -E -dM %s -o - 2>&1 \
+// RUN:     --target=x86_64 \
+// RUN:   | FileCheck -match-full-lines %s -check-prefixes=CHECK_GNR_M64,CHECK_GNRD_M64,CHECK_DMR_M64
 // CHECK_GNR_M64: #define __AES__ 1
 // CHECK_GNR_M64: #define __AMX_BF16__ 1
 // CHECK_GNR_M64-NOT: #define __AMX_COMPLEX__ 1
@@ -1955,6 +1979,8 @@
 // CHECK_GNR_M64: #define __AMX_FP16__ 1
 // CHECK_GNR_M64: #define __AMX_INT8__ 1
 // CHECK_GNR_M64: #define __AMX_TILE__ 1
+// CHECK_DMR_M64: #define __AVX10_2_512__ 1
+// CHECK_DMR_M64: #define __AVX10_2__ 1
 // CHECK_GNR_M64: #define __AVX2__ 1
 // CHECK_GNR_M64: #define __AVX512BF16__ 1
 // CHECK_GNR_M64: #define __AVX512BITALG__ 1
@@ -1969,13 +1995,21 @@
 // CHECK_GNR_M64: #define __AVX512VL__ 1
 // CHECK_GNR_M64: #define __AVX512VNNI__ 1
 // CHECK_GNR_M64: #define __AVX512VPOPCNTDQ__ 1
+// CHECK_DMR_M64: #define __AVXIFMA__ 1
+// CHECK_DMR_M64: #define __AVXNECONVERT__ 1
+// CHECK_DMR_M64: #define __AVXVNNIINT16__ 1
+// CHECK_DMR_M64: #define __AVXVNNIINT8__ 1
 // CHECK_GNR_M64: #define __AVXVNNI__ 1
 // CHECK_GNR_M64: #define __AVX__ 1
 // CHECK_GNR_M64: #define __BMI2__ 1
 // CHECK_GNR_M64: #define __BMI__ 1
+// CHECK_DMR_M64: #define __CCMP__ 1
+// CHECK_DMR_M64: #define __CF__ 1
 // CHECK_GNR_M64: #define __CLDEMOTE__ 1
 // CHECK_GNR_M64: #define __CLFLUSHOPT__ 1
 // CHECK_GNR_M64: #define __CLWB__ 1
+// CHECK_DMR_M64: #define __CMPCCXADD__ 1
+// CHECK_DMR_M64: #define __EGPR__ 1
 // CHECK_GNR_M64: #define __ENQCMD__ 1
 // CHECK_GNR_M64: #define __EVEX256__ 1
 // CHECK_GNR_M64: #define __EVEX512__ 1
@@ -1986,20 +2020,27 @@
 // CHECK_GNR_M64: #define __LZCNT__ 1
 // CHECK_GNR_M64: #define __MMX__ 1
 // CHECK_GNR_M64: #define __MOVBE__ 1
+// CHECK_DMR_M64: #define __NDD__ 1
+// CHECK_DMR_M64: #define __NF__ 1
 // CHECK_GNR_M64: #define __PCLMUL__ 1
 // CHECK_GNR_M64: #define __PCONFIG__ 1
 // CHECK_GNR_M64: #define __PKU__ 1
 // CHECK_GNR_M64: #define __POPCNT__ 1
+// CHECK_DMR_M64: #define __PPX__ 1
 // CHECK_GNR_M64: #define __PREFETCHI__ 1
 // CHECK_GNR_M64: #define __PRFCHW__ 1
 // CHECK_GNR_M64: #define __PTWRITE__ 1
+// CHECK_DMR_M64: #define __PUSH2POP2__ 1
 // CHECK_GNR_M64: #define __RDPID__ 1
 // CHECK_GNR_M64: #define __RDRND__ 1
 // CHECK_GNR_M64: #define __RDSEED__ 1
 // CHECK_GNR_M64: #define __SERIALIZE__ 1
 // CHECK_GNR_M64: #define __SGX__ 1
+// CHECK_DMR_M64: #define __SHA512__ 1
 // CHECK_GNR_M64: #define __SHA__ 1
 // CHECK_GNR_M64: #define __SHSTK__ 1
+// CHECK_DMR_M64: #define __SM3__ 1
+// CHECK_DMR_M64: #define __SM4__ 1
 // CHECK_GNR_M64: #define __SSE2__ 1
 // CHECK_GNR_M64: #define __SSE3__ 1
 // CHECK_GNR_M64: #define __SSE4_1__ 1
@@ -2016,6 +2057,7 @@
 // CHECK_GNR_M64: #define __XSAVEOPT__ 1
 // CHECK_GNR_M64: #define __XSAVES__ 1
 // CHECK_GNR_M64: #define __XSAVE__ 1
+// CHECK_DMR_M64: #define __ZU__ 1
 // CHECK_GNR_M64: #define __amd64 1
 // CHECK_GNR_M64: #define __amd64__ 1
 // CHECK_GNR_M64: #define __corei7 1
diff --git a/compiler-rt/lib/builtins/cpu_model/x86.c b/compiler-rt/lib/builtins/cpu_model/x86.c
index bfa478c4427a5b..6dd3f69f5bcbbb 100644
--- a/compiler-rt/lib/builtins/cpu_model/x86.c
+++ b/compiler-rt/lib/builtins/cpu_model/x86.c
@@ -103,6 +103,7 @@ enum ProcessorSubtypes {
   INTEL_COREI7_ARROWLAKE_S,
   INTEL_COREI7_PANTHERLAKE,
   AMDFAM1AH_ZNVER5,
+  INTEL_COREI7_DIAMONDRAPIDS,
   CPU_SUBTYPE_MAX
 };
 
@@ -600,6 +601,19 @@ static const char *getIntelProcessorTypeAndSubtype(unsigned Family,
       break;
     }
     break;
+  case 19:
+    switch (Model) {
+    // Diamondrapids:
+    case 0x01:
+      CPU = "diamondrapids";
+      *Type = INTEL_COREI7;
+      *Subtype = INTEL_COREI7_DIAMONDRAPIDS;
+      break;
+
+    default: // Unknown family 0x13 CPU.
+      break;
+    }
+    break;
   default:
     break; // Unknown.
   }
diff --git a/llvm/include/llvm/TargetParser/X86TargetParser.def b/llvm/include/llvm/TargetParser/X86TargetParser.def
index 073e19f8187c65..9ba667d0e9187e 100644
--- a/llvm/include/llvm/TargetParser/X86TargetParser.def
+++ b/llvm/include/llvm/TargetParser/X86TargetParser.def
@@ -107,6 +107,7 @@ X86_CPU_SUBTYPE(INTEL_COREI7_ARROWLAKE,      "arrowlake")
 X86_CPU_SUBTYPE(INTEL_COREI7_ARROWLAKE_S,    "arrowlake-s")
 X86_CPU_SUBTYPE(INTEL_COREI7_PANTHERLAKE,    "pantherlake")
 X86_CPU_SUBTYPE(AMDFAM1AH_ZNVER5,            "znver5")
+X86_CPU_SUBTYPE(INTEL_COREI7_DIAMONDRAPIDS,  "diamondrapids")
 
 // Alternate names supported by __builtin_cpu_is and target multiversioning.
 X86_CPU_SUBTYPE_ALIAS(INTEL_COREI7_ALDERLAKE, "raptorlake")
diff --git a/llvm/include/llvm/TargetParser/X86TargetParser.h b/llvm/include/llvm/TargetParser/X86TargetParser.h
index 0e17c4674719cf..aafa77175b90e7 100644
--- a/llvm/include/llvm/TargetParser/X86TargetParser.h
+++ b/llvm/include/llvm/TargetParser/X86TargetParser.h
@@ -121,6 +121,7 @@ enum CPUKind {
   CK_GraniterapidsD,
   CK_Emeraldrapids,
   CK_Clearwaterforest,
+  CK_DiamondRapids,
   CK_KNL,
   CK_KNM,
   CK_Lakemont,
diff --git a/llvm/lib/Target/X86/X86.td b/llvm/lib/Target/X86/X86.td
index 6bedf9e1d13ac3..764f62f2ab5ccb 100644
--- a/llvm/lib/Target/X86/X86.td
+++ b/llvm/lib/Target/X86/X86.td
@@ -1139,6 +1139,28 @@ def ProcessorFeatures {
   list<SubtargetFeature> GNRDFeatures =
     !listconcat(GNRFeatures, GNRDAdditionalFeatures);
 
+  // Diamondrapids
+  list<SubtargetFeature> DMRAdditionalFeatures = [FeatureAVX10_2_512,
+                                                  FeatureAMXCOMPLEX,
+                                                  FeatureSM4,
+                                                  FeatureCMPCCXADD,
+                                                  FeatureAVXIFMA,
+                                                  FeatureAVXNECONVERT,
+                                                  FeatureAVXVNNIINT8,
+                                                  FeatureAVXVNNIINT16,
+                                                  FeatureSHA512,
+                                                  FeatureSM3,
+                                                  FeatureEGPR,
+                                                  FeatureZU,
+                                                  FeatureCCMP,
+                                                  FeaturePush2Pop2,
+                                                  FeaturePPX,
+                                                  FeatureNDD,
+                                                  FeatureNF,
+                                                  FeatureCF];
+  list<SubtargetFeature> DMRFeatures =
+    !listconcat(GNRDFeatures, DMRAdditionalFeatures);
+
   // Atom
   list<SubtargetFeature> AtomFeatures = [FeatureX87,
                                          FeatureCX8,
@@ -1840,6 +1862,8 @@ foreach P = ["graniterapids-d", "graniterapids_d"] in {
 def : ProcModel<P, SapphireRapidsModel,
                 ProcessorFeatures.GNRDFeatures, ProcessorFeatures.GNRTuning>;
 }
+def : ProcModel<"diamondrapids", SapphireRapidsModel,
+                ProcessorFeatures.DMRFeatures, ProcessorFeatures.GNRTuning>;
 
 // AMD CPUs.
 
diff --git a/llvm/lib/TargetParser/Host.cpp b/llvm/lib/TargetParser/Host.cpp
index 5c4e3a9dc52b0f..88ee2787c141f6 100644
--- a/llvm/lib/TargetParser/Host.cpp
+++ b/llvm/lib/TargetParser/Host.cpp
@@ -1006,6 +1006,19 @@ static StringRef getIntelProcessorTypeAndSubtype(unsigned Family,
     CPU = "pentium4";
     break;
   }
+  case 19:
+    switch (Model) {
+    // Diamondrapids:
+    case 0x01:
+      CPU = "diamondrapids";
+      *Type = X86::INTEL_COREI7;
+      *Subtype = X86::INTEL_COREI7_DIAMONDRAPIDS;
+      break;
+
+    default: // Unknown family 0x13 CPU.
+      break;
+    }
+    break;
   default:
     break; // Unknown.
   }
diff --git a/llvm/lib/TargetParser/X86TargetParser.cpp b/llvm/lib/TargetParser/X86TargetParser.cpp
index 586df5748aa822..f21ccf2b4b8f6e 100644
--- a/llvm/lib/TargetParser/X86TargetParser.cpp
+++ b/llvm/lib/TargetParser/X86TargetParser.cpp
@@ -138,6 +138,12 @@ constexpr FeatureBitset FeaturesSapphireRapids =
     FeatureWAITPKG;
 constexpr FeatureBitset FeaturesGraniteRapids =
     FeaturesSapphireRapids | FeatureAMX_FP16 | FeaturePREFETCHI;
+constexpr FeatureBitset FeaturesDiamondRapids =
+    FeaturesGraniteRapids | FeatureAMX_COMPLEX | FeatureAVX10_2_512 |
+    FeatureCMPCCXADD | FeatureAVXIFMA | FeatureAVXNECONVERT | FeatureAVXVNNIINT8 |
+    FeatureAVXVNNIINT16 | FeatureSHA512 | FeatureSM3 | FeatureSM4 | FeatureEGPR |
+    FeatureZU | FeatureCCMP | FeaturePush2Pop2 | FeaturePPX | FeatureNDD | FeatureNF |
+    FeatureCF;
 
 // Intel Atom processors.
 // Bonnell has feature parity with Core2 and adds MOVBE.
@@ -381,6 +387,8 @@ constexpr ProcInfo Processors[] = {
   { {"emeraldrapids"}, CK_Emeraldrapids, FEATURE_AVX512FP16, FeaturesSapphireRapids, 'n', false },
   // Clearwaterforest microarchitecture based processors.
   { {"clearwaterforest"}, CK_Lunarlake, FEATURE_AVX2, FeaturesClearwaterforest, 'p', false },
+  // Diamondrapids microarchitecture based processors.
+  { {"diamondrapids"}, CK_DiamondRapids, FEATURE_AVX10_2_512, FeaturesDiamondRapids, 'z', false },
   // Knights Landing processor.
   { {"knl"}, CK_KNL, FEATURE_AVX512F, FeaturesKNL, 'Z', false },
   { {"mic_avx512"}, CK_KNL, FEATURE_AVX512F, FeaturesKNL, 'Z', true },
diff --git a/llvm/test/CodeGen/X86/cpus-intel.ll b/llvm/test/CodeGen/X86/cpus-intel.ll
index 5e4d09e081fec9..40c38c2e828498 100644
--- a/llvm/test/CodeGen/X86/cpus-intel.ll
+++ b/llvm/test/CodeGen/X86/cpus-intel.ll
@@ -39,6 +39,7 @@
 ; RUN: llc < %s -o /dev/null -mtriple=i686-unknown-unknown -mcpu=gracemont 2>&1 | FileCheck %s --check-prefix=CHECK-NO-ERROR --allow-empty
 ; RUN: llc < %s -o /dev/null -mtriple=i686-unknown-unknown -mcpu=pantherlake 2>&1 | FileCheck %s --check-prefix=CHECK-NO-ERROR --allow-empty
 ; RUN: llc < %s -o /dev/null -mtriple=i686-unknown-unknown -mcpu=clearwaterforest 2>&1 | FileCheck %s --check-prefix=CHECK-NO-ERROR --allow-empty
+; RUN: llc < %s -o /dev/null -mtriple=i686-unknown-unknown -mcpu=diamondrapids 2>&1 | FileCheck %s --check-prefix=CHECK-NO-ERROR --allow-empty
 
 ; RUN: llc < %s -o /dev/null -mtriple=x86_64-unknown-unknown -mcpu=nocona 2>&1 | FileCheck %s --check-prefix=CHECK-NO-ERROR --allow-empty
 ; RUN: llc < %s -o /dev/null -mtriple=x86_64-unknown-unknown -mcpu=core2 2>&1 | FileCheck %s --check-prefix=CHECK-NO-ERROR --allow-empty
@@ -104,6 +105,7 @@
 ; RUN: llc < %s -o /dev/null -mtriple=x86_64-unknown-unknown -mcpu=gracemont 2>&1 | FileCheck %s --check-prefix=CHECK-NO-ERROR --allow-empty
 ; RUN: llc < %s -o /dev/null -mtriple=x86_64-unknown-unknown -mcpu=pantherlake 2>&1 | FileCheck %s --check-prefix=CHECK-NO-ERROR --allow-empty
 ; RUN: llc < %s -o /dev/null -mtriple=x86_64-unknown-unknown -mcpu=clearwaterforest 2>&1 | FileCheck %s --check-prefix=CHECK-NO-ERROR --allow-empty
+; RUN: llc < %s -o /dev/null -mtriple=x86_64-unknown-unknown -mcpu=diamondrapids 2>&1 | FileCheck %s --check-prefix=CHECK-NO-ERROR --allow-empty
 
 define void @foo() {
   ret void

Copy link

github-actions bot commented Oct 28, 2024

⚠️ C/C++ code formatter, clang-format found issues in your code. ⚠️

You can test this locally with the following command:
git-clang-format --diff 6be567bfc22e0d165a4b927beab3933be7ef98e6 ab477fb979f896ef4dc4abc45439a0893e279b85 --extensions cpp,c,h -- clang/lib/Basic/Targets/X86.cpp clang/test/CodeGen/attr-cpuspecific-cpus.c clang/test/CodeGen/attr-target-mv.c clang/test/CodeGen/target-builtin-noerror.c clang/test/Driver/x86-march.c clang/test/Misc/target-invalid-cpu-note/x86.c clang/test/Preprocessor/predefined-arch-macros.c compiler-rt/lib/builtins/cpu_model/x86.c llvm/include/llvm/TargetParser/X86TargetParser.h llvm/lib/TargetParser/Host.cpp llvm/lib/TargetParser/X86TargetParser.cpp
View the diff from clang-format here.
diff --git a/llvm/lib/TargetParser/X86TargetParser.cpp b/llvm/lib/TargetParser/X86TargetParser.cpp
index 00e5d57920..6520d4bbfc 100644
--- a/llvm/lib/TargetParser/X86TargetParser.cpp
+++ b/llvm/lib/TargetParser/X86TargetParser.cpp
@@ -139,13 +139,12 @@ constexpr FeatureBitset FeaturesSapphireRapids =
 constexpr FeatureBitset FeaturesGraniteRapids =
     FeaturesSapphireRapids | FeatureAMX_FP16 | FeaturePREFETCHI;
 constexpr FeatureBitset FeaturesDiamondRapids =
-    FeaturesGraniteRapids | FeatureAVX10_2_512 |
-    FeatureCMPCCXADD | FeatureAVXIFMA | FeatureAVXNECONVERT |
-    FeatureAVXVNNIINT8 | FeatureAVXVNNIINT16 | FeatureSHA512 | FeatureSM3 |
-    FeatureSM4 | FeatureEGPR | FeatureZU | FeatureCCMP | FeaturePush2Pop2 |
-    FeaturePPX | FeatureNDD | FeatureNF | FeatureCF | FeatureMOVRS |
-    FeatureAMX_MOVRS | FeatureAMX_AVX512 | FeatureAMX_FP8 | FeatureAMX_TF32 |
-    FeatureAMX_TRANSPOSE;
+    FeaturesGraniteRapids | FeatureAVX10_2_512 | FeatureCMPCCXADD |
+    FeatureAVXIFMA | FeatureAVXNECONVERT | FeatureAVXVNNIINT8 |
+    FeatureAVXVNNIINT16 | FeatureSHA512 | FeatureSM3 | FeatureSM4 |
+    FeatureEGPR | FeatureZU | FeatureCCMP | FeaturePush2Pop2 | FeaturePPX |
+    FeatureNDD | FeatureNF | FeatureCF | FeatureMOVRS | FeatureAMX_MOVRS |
+    FeatureAMX_AVX512 | FeatureAMX_FP8 | FeatureAMX_TF32 | FeatureAMX_TRANSPOSE;
 
 // Intel Atom processors.
 // Bonnell has feature parity with Core2 and adds MOVBE.

Copy link
Collaborator

@RKSimon RKSimon left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mechanically this LGTM with a few style minors, but I don't know much about the exact arch/ISA so please wait for @phoebewang's review

@@ -1867,13 +1867,18 @@
// RUN: %clang -march=graniterapids-d -m32 -E -dM %s -o - 2>&1 \
// RUN: --target=i386 \
// RUN: | FileCheck -match-full-lines %s -check-prefixes=CHECK_GNR_M32,CHECK_GNRD_M32
// RUN: %clang -march=diamondrapids -m32 -E -dM %s -o - 2>&1 \
// RUN: --target=i386 \
// RUN: | FileCheck -match-full-lines %s -check-prefixes=CHECK_GNR_M32,CHECK_GNRD_M32,CHECK_DMR_M32
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This 'overlay' approach feels a bit unwieldy - but I have not strong objections.

Copy link
Contributor

@phoebewang phoebewang left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM.

@FreddyLeaf FreddyLeaf merged commit 826b845 into llvm:main Nov 18, 2024
5 of 9 checks passed
@FreddyLeaf FreddyLeaf deleted the diamondrapids branch November 18, 2024 00:31
@nico
Copy link
Contributor

nico commented Nov 18, 2024

Looks like this breaks tests: http://45.33.8.238/linux/153081/step_6.txt

Please take a look and revert for now if it takes a while to fix.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Nov 18, 2024

LLVM Buildbot has detected a new failure on builder llvm-clang-x86_64-sie-ubuntu-fast running on sie-linux-worker while building clang,compiler-rt,llvm at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/144/builds/11843

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'Clang :: Preprocessor/predefined-arch-macros.c' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 3: /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=i386 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=i386 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M32
RUN: at line 11: not /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=i386 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M64
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M64
+ not /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=i386 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 16: /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=i486 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=i486 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M32
RUN: at line 25: not /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=i486 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M64
+ not /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=i486 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M64
RUN: at line 30: /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=i586 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=i586 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M32
RUN: at line 42: not /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=i586 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M64
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M64
+ not /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=i586 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 47: /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=pentium -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=pentium -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M32
RUN: at line 59: not /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=pentium -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M64
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M64
+ not /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=pentium -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 64: /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=pentium-mmx -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=pentium-mmx -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 79: not /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=pentium-mmx -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M64
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M64
+ not /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=pentium-mmx -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 84: /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=winchip-c6 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=winchip-c6 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 94: not /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=winchip-c6 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M64
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M64
+ not /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=winchip-c6 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 99: /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=winchip2 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=winchip2 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 109: not /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=winchip2 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M64
+ not /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=winchip2 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M64
RUN: at line 114: /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=c3 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_C3_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/clang -march=c3 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_C3_M32
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Nov 18, 2024

LLVM Buildbot has detected a new failure on builder openmp-offload-sles-build-only running on rocm-worker-hw-04-sles while building clang,compiler-rt,llvm at step 6 "Add check check-clang".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/140/builds/11093

Here is the relevant piece of the build log for the reference
Step 6 (Add check check-clang) failure: test (failure)
******************** TEST 'Clang :: Preprocessor/predefined-arch-macros.c' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 3: /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=i386 -m32 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M32
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=i386 -m32 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M32
RUN: at line 11: not /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=i386 -m64 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M64
+ not /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=i386 -m64 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M64
RUN: at line 16: /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=i486 -m32 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M32
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M32
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=i486 -m32 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 25: not /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=i486 -m64 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M64
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M64
+ not /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=i486 -m64 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 30: /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=i586 -m32 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M32
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M32
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=i586 -m32 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 42: not /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=i586 -m64 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M64
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M64
+ not /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=i586 -m64 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 47: /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=pentium -m32 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M32
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=pentium -m32 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M32
RUN: at line 59: not /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=pentium -m64 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M64
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M64
+ not /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=pentium -m64 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 64: /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=pentium-mmx -m32 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M32
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=pentium-mmx -m32 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M32
RUN: at line 79: not /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=pentium-mmx -m64 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M64
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M64
+ not /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=pentium-mmx -m64 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 84: /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=winchip-c6 -m32 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M32
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M32
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=winchip-c6 -m32 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 94: not /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=winchip-c6 -m64 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M64
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M64
+ not /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=winchip-c6 -m64 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 99: /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=winchip2 -m32 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M32
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M32
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=winchip2 -m32 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 109: not /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=winchip2 -m64 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M64
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M64
+ not /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=winchip2 -m64 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 114: /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=c3 -m32 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_C3_M32
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck -match-full-lines /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_C3_M32
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/clang -march=c3 -m32 -E -dM /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
...

FreddyLeaf added a commit that referenced this pull request Nov 18, 2024
FreddyLeaf added a commit to FreddyLeaf/llvm-project that referenced this pull request Nov 18, 2024
@llvm-ci
Copy link
Collaborator

llvm-ci commented Nov 18, 2024

LLVM Buildbot has detected a new failure on builder llvm-clang-aarch64-darwin running on doug-worker-5 while building clang,compiler-rt,llvm at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/190/builds/9663

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'Clang :: Preprocessor/predefined-arch-macros.c' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 3: /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=i386 -m32 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M32
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=i386 -m32 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M32
RUN: at line 11: not /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=i386 -m64 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M64
+ not /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=i386 -m64 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M64
RUN: at line 16: /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=i486 -m32 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M32
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=i486 -m32 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M32
RUN: at line 25: not /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=i486 -m64 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M64
+ not /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=i486 -m64 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M64
RUN: at line 30: /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=i586 -m32 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M32
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=i586 -m32 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M32
RUN: at line 42: not /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=i586 -m64 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M64
+ not /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=i586 -m64 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M64
RUN: at line 47: /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=pentium -m32 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M32
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=pentium -m32 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M32
RUN: at line 59: not /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=pentium -m64 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M64
+ not /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=pentium -m64 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M64
RUN: at line 64: /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=pentium-mmx -m32 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M32
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=pentium-mmx -m32 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M32
RUN: at line 79: not /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=pentium-mmx -m64 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M64
+ not /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=pentium-mmx -m64 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M64
RUN: at line 84: /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=winchip-c6 -m32 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M32
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=winchip-c6 -m32 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M32
RUN: at line 94: not /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=winchip-c6 -m64 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M64
+ not /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=winchip-c6 -m64 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M64
RUN: at line 99: /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=winchip2 -m32 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M32
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=winchip2 -m32 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M32
RUN: at line 109: not /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=winchip2 -m64 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M64
+ not /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=winchip2 -m64 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M64
RUN: at line 114: /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=c3 -m32 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_C3_M32
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/clang -march=c3 -m32 -E -dM /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck -match-full-lines /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_C3_M32
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Nov 18, 2024

LLVM Buildbot has detected a new failure on builder premerge-monolithic-linux running on premerge-linux-1 while building clang,compiler-rt,llvm at step 7 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/153/builds/14933

Here is the relevant piece of the build log for the reference
Step 7 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'Clang :: Preprocessor/predefined-arch-macros.c' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 3: /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=i386 -m32 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M32
+ /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=i386 -m32 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M32
RUN: at line 11: not /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=i386 -m64 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M64
+ not /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=i386 -m64 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M64
RUN: at line 16: /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=i486 -m32 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M32
+ /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=i486 -m32 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M32
RUN: at line 25: not /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=i486 -m64 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M64
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M64
+ not /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=i486 -m64 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 30: /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=i586 -m32 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M32
+ /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=i586 -m32 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M32
RUN: at line 42: not /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=i586 -m64 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M64
+ not /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=i586 -m64 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M64
RUN: at line 47: /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=pentium -m32 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M32
+ /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=pentium -m32 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M32
RUN: at line 59: not /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=pentium -m64 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M64
+ not /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=pentium -m64 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M64
RUN: at line 64: /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=pentium-mmx -m32 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M32
+ /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=pentium-mmx -m32 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M32
RUN: at line 79: not /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=pentium-mmx -m64 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M64
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M64
+ not /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=pentium-mmx -m64 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 84: /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=winchip-c6 -m32 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M32
+ /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=winchip-c6 -m32 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M32
RUN: at line 94: not /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=winchip-c6 -m64 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M64
+ not /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=winchip-c6 -m64 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M64
RUN: at line 99: /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=winchip2 -m32 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M32
+ /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=winchip2 -m32 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M32
RUN: at line 109: not /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=winchip2 -m64 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M64
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M64
+ not /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=winchip2 -m64 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 114: /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=c3 -m32 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_C3_M32
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck -match-full-lines /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_C3_M32
+ /build/buildbot/premerge-monolithic-linux/build/bin/clang -march=c3 -m32 -E -dM /build/buildbot/premerge-monolithic-linux/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
...

@FreddyLeaf
Copy link
Contributor Author

Looks like this breaks tests: http://45.33.8.238/linux/153081/step_6.txt

Please take a look and revert for now if it takes a while to fix.

Thanks reminding. Revert first.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Nov 18, 2024

LLVM Buildbot has detected a new failure on builder llvm-clang-x86_64-gcc-ubuntu running on sie-linux-worker3 while building clang,compiler-rt,llvm at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/174/builds/8597

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'Clang :: Preprocessor/predefined-arch-macros.c' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 3: /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=i386 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=i386 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 11: not /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=i386 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M64
+ not /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=i386 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M64
RUN: at line 16: /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=i486 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=i486 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M32
RUN: at line 25: not /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=i486 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M64
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M64
+ not /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=i486 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 30: /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=i586 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=i586 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M32
RUN: at line 42: not /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=i586 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M64
+ not /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=i586 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M64
RUN: at line 47: /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=pentium -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=pentium -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 59: not /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=pentium -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M64
+ not /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=pentium -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M64
RUN: at line 64: /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=pentium-mmx -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=pentium-mmx -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M32
RUN: at line 79: not /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=pentium-mmx -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M64
+ not /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=pentium-mmx -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M64
RUN: at line 84: /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=winchip-c6 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=winchip-c6 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 94: not /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=winchip-c6 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M64
+ not /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=winchip-c6 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M64
RUN: at line 99: /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=winchip2 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=winchip2 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M32
RUN: at line 109: not /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=winchip2 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M64
+ not /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=winchip2 -m64 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M64
RUN: at line 114: /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=c3 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_C3_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck -match-full-lines /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_C3_M32
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/clang -march=c3 -m32 -E -dM /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Nov 18, 2024

LLVM Buildbot has detected a new failure on builder llvm-clang-x86_64-sie-win running on sie-win-worker while building clang,compiler-rt,llvm at step 7 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/46/builds/8042

Here is the relevant piece of the build log for the reference
Step 7 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'Clang :: Preprocessor/predefined-arch-macros.c' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
# RUN: at line 3
z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe -march=i386 -m32 -E -dM Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe -match-full-lines Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -check-prefix=CHECK_I386_M32
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe' -march=i386 -m32 -E -dM 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -o - -target i386-unknown-linux
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' -match-full-lines 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -check-prefix=CHECK_I386_M32
# RUN: at line 11
not z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe -march=i386 -m64 -E -dM Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe -match-full-lines Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -check-prefix=CHECK_I386_M64
# executed command: not 'z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe' -march=i386 -m64 -E -dM 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -o - -target i386-unknown-linux
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' -match-full-lines 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -check-prefix=CHECK_I386_M64
# RUN: at line 16
z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe -march=i486 -m32 -E -dM Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe -match-full-lines Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -check-prefix=CHECK_I486_M32
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe' -march=i486 -m32 -E -dM 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -o - -target i386-unknown-linux
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' -match-full-lines 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -check-prefix=CHECK_I486_M32
# RUN: at line 25
not z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe -march=i486 -m64 -E -dM Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe -match-full-lines Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -check-prefix=CHECK_I486_M64
# executed command: not 'z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe' -march=i486 -m64 -E -dM 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -o - -target i386-unknown-linux
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' -match-full-lines 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -check-prefix=CHECK_I486_M64
# RUN: at line 30
z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe -march=i586 -m32 -E -dM Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe -match-full-lines Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -check-prefix=CHECK_I586_M32
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe' -march=i586 -m32 -E -dM 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -o - -target i386-unknown-linux
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' -match-full-lines 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -check-prefix=CHECK_I586_M32
# RUN: at line 42
not z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe -march=i586 -m64 -E -dM Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe -match-full-lines Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -check-prefix=CHECK_I586_M64
# executed command: not 'z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe' -march=i586 -m64 -E -dM 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -o - -target i386-unknown-linux
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' -match-full-lines 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -check-prefix=CHECK_I586_M64
# RUN: at line 47
z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe -march=pentium -m32 -E -dM Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe -match-full-lines Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M32
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe' -march=pentium -m32 -E -dM 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -o - -target i386-unknown-linux
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' -match-full-lines 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -check-prefix=CHECK_PENTIUM_M32
# RUN: at line 59
not z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe -march=pentium -m64 -E -dM Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe -match-full-lines Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M64
# executed command: not 'z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe' -march=pentium -m64 -E -dM 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -o - -target i386-unknown-linux
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' -match-full-lines 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -check-prefix=CHECK_PENTIUM_M64
# RUN: at line 64
z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe -march=pentium-mmx -m32 -E -dM Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe -match-full-lines Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M32
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe' -march=pentium-mmx -m32 -E -dM 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -o - -target i386-unknown-linux
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' -match-full-lines 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -check-prefix=CHECK_PENTIUM_MMX_M32
# RUN: at line 79
not z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe -march=pentium-mmx -m64 -E -dM Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe -match-full-lines Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M64
# executed command: not 'z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe' -march=pentium-mmx -m64 -E -dM 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -o - -target i386-unknown-linux
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' -match-full-lines 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -check-prefix=CHECK_PENTIUM_MMX_M64
# RUN: at line 84
z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe -march=winchip-c6 -m32 -E -dM Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe -match-full-lines Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M32
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe' -march=winchip-c6 -m32 -E -dM 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -o - -target i386-unknown-linux
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' -match-full-lines 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\Preprocessor\predefined-arch-macros.c' -check-prefix=CHECK_WINCHIP_C6_M32
# RUN: at line 94
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Nov 18, 2024

LLVM Buildbot has detected a new failure on builder llvm-x86_64-debian-dylib running on gribozavr4 while building clang,compiler-rt,llvm at step 6 "test-build-unified-tree-check-clang".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/60/builds/12961

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-clang) failure: test (failure)
******************** TEST 'Clang :: Preprocessor/predefined-arch-macros.c' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 3: /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=i386 -m32 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M32
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M32
+ /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=i386 -m32 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 11: not /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=i386 -m64 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M64
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M64
+ not /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=i386 -m64 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 16: /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=i486 -m32 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M32
+ /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=i486 -m32 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M32
RUN: at line 25: not /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=i486 -m64 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M64
+ not /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=i486 -m64 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M64
RUN: at line 30: /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=i586 -m32 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M32
+ /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=i586 -m32 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M32
RUN: at line 42: not /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=i586 -m64 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M64
+ not /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=i586 -m64 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M64
RUN: at line 47: /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=pentium -m32 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M32
+ /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=pentium -m32 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M32
RUN: at line 59: not /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=pentium -m64 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M64
+ not /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=pentium -m64 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M64
RUN: at line 64: /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=pentium-mmx -m32 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M32
+ /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=pentium-mmx -m32 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M32
RUN: at line 79: not /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=pentium-mmx -m64 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M64
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M64
+ not /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=pentium-mmx -m64 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 84: /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=winchip-c6 -m32 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M32
+ /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=winchip-c6 -m32 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M32
RUN: at line 94: not /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=winchip-c6 -m64 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M64
+ not /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=winchip-c6 -m64 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M64
RUN: at line 99: /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=winchip2 -m32 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M32
+ /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=winchip2 -m32 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M32
RUN: at line 109: not /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=winchip2 -m64 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M64
+ not /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=winchip2 -m64 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M64
RUN: at line 114: /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=c3 -m32 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_C3_M32
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck -match-full-lines /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_C3_M32
+ /b/1/llvm-x86_64-debian-dylib/build/bin/clang -march=c3 -m32 -E -dM /b/1/llvm-x86_64-debian-dylib/llvm-project/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Nov 18, 2024

LLVM Buildbot has detected a new failure on builder clang-x86_64-debian-fast running on gribozavr4 while building clang,compiler-rt,llvm at step 6 "test-build-unified-tree-check-all".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/56/builds/12415

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'Clang :: Preprocessor/predefined-arch-macros.c' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
RUN: at line 3: /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=i386 -m32 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M32
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=i386 -m32 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M32
RUN: at line 11: not /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=i386 -m64 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M64
+ not /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=i386 -m64 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I386_M64
RUN: at line 16: /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=i486 -m32 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M32
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M32
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=i486 -m32 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 25: not /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=i486 -m64 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M64
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I486_M64
+ not /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=i486 -m64 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 30: /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=i586 -m32 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M32
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=i586 -m32 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M32
RUN: at line 42: not /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=i586 -m64 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M64
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_I586_M64
+ not /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=i586 -m64 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 47: /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=pentium -m32 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M32
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M32
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=pentium -m32 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 59: not /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=pentium -m64 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M64
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_M64
+ not /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=pentium -m64 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 64: /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=pentium-mmx -m32 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M32
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=pentium-mmx -m32 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M32
RUN: at line 79: not /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=pentium-mmx -m64 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M64
+ not /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=pentium-mmx -m64 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_PENTIUM_MMX_M64
RUN: at line 84: /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=winchip-c6 -m32 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M32
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=winchip-c6 -m32 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M32
RUN: at line 94: not /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=winchip-c6 -m64 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M64
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP_C6_M64
+ not /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=winchip-c6 -m64 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 99: /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=winchip2 -m32 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M32
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M32
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=winchip2 -m32 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
RUN: at line 109: not /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=winchip2 -m64 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M64
+ not /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=winchip2 -m64 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_WINCHIP2_M64
RUN: at line 114: /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=c3 -m32 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - 2>&1      -target i386-unknown-linux    | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_C3_M32
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck -match-full-lines /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -check-prefix=CHECK_C3_M32
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/clang -march=c3 -m32 -E -dM /b/1/clang-x86_64-debian-fast/llvm.src/clang/test/Preprocessor/predefined-arch-macros.c -o - -target i386-unknown-linux
...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backend:X86 clang:driver 'clang' and 'clang++' user-facing binaries. Not 'clang-cl' clang:frontend Language frontend issues, e.g. anything involving "Sema" clang Clang issues not falling into any other category compiler-rt:builtins compiler-rt
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants