Skip to content

[GVN] memoryssa implies no-memdep #149473

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 1 commit into from
Jul 21, 2025

Conversation

madhur13490
Copy link
Contributor

Enabling one of MemorySSA or MD implies the other is off.

@llvmbot
Copy link
Member

llvmbot commented Jul 18, 2025

@llvm/pr-subscribers-llvm-transforms

Author: Madhur Amilkanthwar (madhur13490)

Changes

Enabling one of MemorySSA or MD implies the other is off.


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

11 Files Affected:

  • (modified) llvm/lib/Passes/PassBuilder.cpp (+4)
  • (modified) llvm/test/Transforms/GVN/assume.ll (+1-1)
  • (modified) llvm/test/Transforms/GVN/basic.ll (+1-1)
  • (modified) llvm/test/Transforms/GVN/nonescaping.ll (+1-1)
  • (modified) llvm/test/Transforms/GVN/phi.ll (+1-1)
  • (modified) llvm/test/Transforms/GVN/pr14166.ll (+1-1)
  • (modified) llvm/test/Transforms/GVN/pre-compare.ll (+1-1)
  • (modified) llvm/test/Transforms/GVN/readattrs.ll (+1-1)
  • (modified) llvm/test/Transforms/GVN/setjmp.ll (+1-1)
  • (modified) llvm/test/Transforms/GVN/tbaa.ll (+1-1)
  • (modified) llvm/test/Transforms/GVN/vscale.ll (+1-1)
diff --git a/llvm/lib/Passes/PassBuilder.cpp b/llvm/lib/Passes/PassBuilder.cpp
index 80fb52f9603e8..e15570c3f600e 100644
--- a/llvm/lib/Passes/PassBuilder.cpp
+++ b/llvm/lib/Passes/PassBuilder.cpp
@@ -1189,9 +1189,13 @@ Expected<GVNOptions> parseGVNOptions(StringRef Params) {
     } else if (ParamName == "split-backedge-load-pre") {
       Result.setLoadPRESplitBackedge(Enable);
     } else if (ParamName == "memdep") {
+      // MemDep and MemorySSA are mutually exclusive.
       Result.setMemDep(Enable);
+      Result.setMemorySSA(!Enable);
     } else if (ParamName == "memoryssa") {
+      // MemDep and MemorySSA are mutually exclusive.
       Result.setMemorySSA(Enable);
+      Result.setMemDep(!Enable);
     } else {
       return make_error<StringError>(
           formatv("invalid GVN pass parameter '{}'", ParamName).str(),
diff --git a/llvm/test/Transforms/GVN/assume.ll b/llvm/test/Transforms/GVN/assume.ll
index 1498aa4fa7b0b..5d3a23b158879 100644
--- a/llvm/test/Transforms/GVN/assume.ll
+++ b/llvm/test/Transforms/GVN/assume.ll
@@ -1,6 +1,6 @@
 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
 ; RUN: opt < %s -passes=gvn -verify-analysis-invalidation -S | FileCheck --check-prefixes=CHECK,MDEP %s
-; RUN: opt < %s -passes='gvn<memoryssa;no-memdep>' -verify-analysis-invalidation -S | FileCheck --check-prefixes=CHECK,MSSA %s
+; RUN: opt < %s -passes='gvn<memoryssa>' -verify-analysis-invalidation -S | FileCheck --check-prefixes=CHECK,MSSA %s
 
 declare void @llvm.assume(i1)
 declare void @use(i1)
diff --git a/llvm/test/Transforms/GVN/basic.ll b/llvm/test/Transforms/GVN/basic.ll
index c1a358af903f4..2e360aac60a91 100644
--- a/llvm/test/Transforms/GVN/basic.ll
+++ b/llvm/test/Transforms/GVN/basic.ll
@@ -1,6 +1,6 @@
 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
 ; RUN: opt < %s -passes=gvn -S | FileCheck %s --check-prefixes=CHECK,MDEP
-; RUN: opt < %s -passes='gvn<memoryssa;no-memdep>' -S | FileCheck --check-prefixes=CHECK,MSSA %s
+; RUN: opt < %s -passes='gvn<memoryssa>' -S | FileCheck --check-prefixes=CHECK,MSSA %s
 
 define i32 @main() {
 ; CHECK-LABEL: define i32 @main() {
diff --git a/llvm/test/Transforms/GVN/nonescaping.ll b/llvm/test/Transforms/GVN/nonescaping.ll
index 29137556f14de..0866a27b249f5 100644
--- a/llvm/test/Transforms/GVN/nonescaping.ll
+++ b/llvm/test/Transforms/GVN/nonescaping.ll
@@ -1,6 +1,6 @@
 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
 ; RUN: opt < %s -S -passes=gvn 2>&1 | FileCheck %s --check-prefixes=CHECK,MDEP
-; RUN: opt < %s -S -passes='gvn<memoryssa;no-memdep>' 2>&1 | FileCheck --check-prefixes=CHECK,MSSA %s
+; RUN: opt < %s -S -passes='gvn<memoryssa>' 2>&1 | FileCheck --check-prefixes=CHECK,MSSA %s
 
 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128"
 
diff --git a/llvm/test/Transforms/GVN/phi.ll b/llvm/test/Transforms/GVN/phi.ll
index 5b607f7559c1b..a0207cfde1a16 100644
--- a/llvm/test/Transforms/GVN/phi.ll
+++ b/llvm/test/Transforms/GVN/phi.ll
@@ -1,6 +1,6 @@
 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
 ; RUN: opt -S -passes=gvn < %s | FileCheck --check-prefixes=CHECK,MDEP %s
-; RUN: opt -S -passes='gvn<memoryssa;no-memdep>' < %s | FileCheck %s
+; RUN: opt -S -passes='gvn<memoryssa>' < %s | FileCheck %s
 
 
 define i64 @test1(i1 %c, i64 %a, i64 %b) {
diff --git a/llvm/test/Transforms/GVN/pr14166.ll b/llvm/test/Transforms/GVN/pr14166.ll
index bbc8c89ddaa63..6e23bdcf30053 100644
--- a/llvm/test/Transforms/GVN/pr14166.ll
+++ b/llvm/test/Transforms/GVN/pr14166.ll
@@ -1,6 +1,6 @@
 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
 ; RUN: opt -disable-basic-aa -passes=gvn -S < %s | FileCheck %s --check-prefixes=CHECK,MDEP
-; RUN: opt -disable-basic-aa -passes='gvn<memoryssa;no-memdep>' -S < %s | FileCheck --check-prefixes=CHECK,MSSA %s
+; RUN: opt -disable-basic-aa -passes='gvn<memoryssa>' -S < %s | FileCheck --check-prefixes=CHECK,MSSA %s
 target datalayout = "e-p:32:32:32"
 define <2 x i32> @test1() {
 ; MDEP-LABEL: define <2 x i32> @test1() {
diff --git a/llvm/test/Transforms/GVN/pre-compare.ll b/llvm/test/Transforms/GVN/pre-compare.ll
index 574d40dfb71d5..c4f083b5750a2 100644
--- a/llvm/test/Transforms/GVN/pre-compare.ll
+++ b/llvm/test/Transforms/GVN/pre-compare.ll
@@ -1,6 +1,6 @@
 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
 ; RUN: opt -passes=gvn -S < %s | FileCheck --check-prefixes=CHECK,MDEP %s
-; RUN: opt -passes='gvn<memoryssa;no-memdep>' -S < %s | FileCheck --check-prefixes=CHECK,MSSA %s
+; RUN: opt -passes='gvn<memoryssa>' -S < %s | FileCheck --check-prefixes=CHECK,MSSA %s
 
 ; C source:
 ;
diff --git a/llvm/test/Transforms/GVN/readattrs.ll b/llvm/test/Transforms/GVN/readattrs.ll
index be018834014d5..6e02dd36b5749 100644
--- a/llvm/test/Transforms/GVN/readattrs.ll
+++ b/llvm/test/Transforms/GVN/readattrs.ll
@@ -1,6 +1,6 @@
 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
 ; RUN: opt -passes=gvn -S -o - < %s | FileCheck --check-prefixes=CHECK,MDEP %s
-; RUN: opt -passes='gvn<memoryssa;no-memdep>' -S -o - < %s | FileCheck --check-prefixes=CHECK,MSSA %s
+; RUN: opt -passes='gvn<memoryssa>' -S -o - < %s | FileCheck --check-prefixes=CHECK,MSSA %s
 
 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128"
 target triple = "x86_64-unknown-linux-gnu"
diff --git a/llvm/test/Transforms/GVN/setjmp.ll b/llvm/test/Transforms/GVN/setjmp.ll
index 7777038f89cb1..5351878419963 100644
--- a/llvm/test/Transforms/GVN/setjmp.ll
+++ b/llvm/test/Transforms/GVN/setjmp.ll
@@ -1,6 +1,6 @@
 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
 ; RUN: opt -S -passes=gvn < %s | FileCheck --check-prefixes=CHECK,MDEP %s
-; RUN: opt -S -passes='gvn<memoryssa;no-memdep>' -verify-analysis-invalidation < %s | FileCheck --check-prefixes=CHECK,MSSA %s
+; RUN: opt -S -passes='gvn<memoryssa>' -verify-analysis-invalidation < %s | FileCheck --check-prefixes=CHECK,MSSA %s
 declare i32 @setjmp() returns_twice
 declare void @longjmp()
 declare ptr @malloc(i64)
diff --git a/llvm/test/Transforms/GVN/tbaa.ll b/llvm/test/Transforms/GVN/tbaa.ll
index 366dfeca8b758..59ace145b5657 100644
--- a/llvm/test/Transforms/GVN/tbaa.ll
+++ b/llvm/test/Transforms/GVN/tbaa.ll
@@ -1,6 +1,6 @@
 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
 ; RUN: opt -passes=gvn -S < %s | FileCheck --check-prefixes=CHECK,MDEP %s
-; RUN: opt -passes='gvn<memoryssa;no-memdep>' -S < %s | FileCheck --check-prefixes=CHECK,MSSA %s
+; RUN: opt -passes='gvn<memoryssa>' -S < %s | FileCheck --check-prefixes=CHECK,MSSA %s
 
 define i32 @test1(ptr %p, ptr %q) {
 ; MDEP-LABEL: define i32 @test1(
diff --git a/llvm/test/Transforms/GVN/vscale.ll b/llvm/test/Transforms/GVN/vscale.ll
index 646a67d15d392..5d6c55990a855 100644
--- a/llvm/test/Transforms/GVN/vscale.ll
+++ b/llvm/test/Transforms/GVN/vscale.ll
@@ -1,6 +1,6 @@
 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
 ; RUN: opt -S < %s -passes=gvn,dce | FileCheck --check-prefixes=CHECK,MDEP %s
-; RUN: opt -S < %s -passes='gvn<memoryssa;no-memdep>',dce | FileCheck --check-prefixes=CHECK,MSSA %s
+; RUN: opt -S < %s -passes='gvn<memoryssa>',dce | FileCheck --check-prefixes=CHECK,MSSA %s
 
 ; Analyze Load from clobbering Load.
 

Copy link
Contributor

@nikic nikic left a comment

Choose a reason for hiding this comment

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

LGTM

Copy link
Contributor

@antoniofrighetto antoniofrighetto left a comment

Choose a reason for hiding this comment

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

LG, thanks!

@madhur13490 madhur13490 merged commit 60d2d94 into llvm:main Jul 21, 2025
9 of 11 checks passed
@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

LLVM Buildbot has detected a new failure on builder lld-x86_64-ubuntu-fast running on as-builder-4 while building llvm at step 6 "test-build-unified-tree-check-all".

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

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
+ /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/bin/FileCheck /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll:35:13: error: CHECK-11: expected string not found in input
; CHECK-11: function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)
            ^
<stdin>:1:1: note: scanning from here
function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;no-memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;memdep;no-memoryssa>)
^

Input file: <stdin>
Check file: /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll

-dump-input=help explains the following input dump.

...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

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

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

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
�[1m/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll:35:13: �[0m�[0;1;31merror: �[0m�[1mCHECK-11: expected string not found in input
�[0m; CHECK-11: function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)
�[0;1;32m            ^
�[0m�[1m<stdin>:1:1: �[0m�[0;1;30mnote: �[0m�[1mscanning from here
�[0mfunction(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;no-memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;memdep;no-memoryssa>)
�[0;1;32m^
�[0m
Input file: <stdin>
Check file: /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll

-dump-input=help explains the following input dump.

...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

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

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

Here is the relevant piece of the build log for the reference
Step 7 (test-build-unified-tree-check-llvm) failure: test (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
/b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
/b/1/llvm-x86_64-debian-dylib/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
+ /b/1/llvm-x86_64-debian-dylib/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
/b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
/b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
+ /b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
/b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
+ /b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
/b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
/b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
+ /b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
/b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
/b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
/b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /b/1/llvm-x86_64-debian-dylib/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
+ /b/1/llvm-x86_64-debian-dylib/build/bin/FileCheck /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
/b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll:35:13: error: CHECK-11: expected string not found in input
; CHECK-11: function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)
            ^
<stdin>:1:1: note: scanning from here
function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;no-memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;memdep;no-memoryssa>)
^

Input file: <stdin>
Check file: /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll

-dump-input=help explains the following input dump.

...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

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

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

Here is the relevant piece of the build log for the reference
Step 7 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
/build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
+ /build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
/build/buildbot/premerge-monolithic-linux/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /build/buildbot/premerge-monolithic-linux/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
/build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
/build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
/build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
/build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
/build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
/build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
/build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
/build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /build/buildbot/premerge-monolithic-linux/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
+ /build/buildbot/premerge-monolithic-linux/build/bin/FileCheck /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
/build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll:35:13: error: CHECK-11: expected string not found in input
; CHECK-11: function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)
            ^
<stdin>:1:1: note: scanning from here
function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;no-memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;memdep;no-memoryssa>)
^

Input file: <stdin>
Check file: /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll

-dump-input=help explains the following input dump.

...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

LLVM Buildbot has detected a new failure on builder ml-opt-rel-x86-64 running on ml-opt-rel-x86-64-b1 while building llvm at step 6 "test-build-unified-tree-check-all".

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

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
+ /b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
/b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
+ /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
/b/ml-opt-rel-x86-64-b1/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
+ /b/ml-opt-rel-x86-64-b1/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
/b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
+ /b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
/b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
+ /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
/b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
+ /b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
/b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
+ /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
/b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
+ /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
/b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
+ /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
/b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
+ /b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
/b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /b/ml-opt-rel-x86-64-b1/build/bin/FileCheck /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
+ /b/ml-opt-rel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
/b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll:35:13: error: CHECK-11: expected string not found in input
; CHECK-11: function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)
            ^
<stdin>:1:1: note: scanning from here
function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;no-memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;memdep;no-memoryssa>)
^

Input file: <stdin>
Check file: /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll

-dump-input=help explains the following input dump.

...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

LLVM Buildbot has detected a new failure on builder openmp-offload-amdgpu-runtime-2 running on rocm-worker-hw-02 while building llvm at step 8 "Add check check-llvm".

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

Here is the relevant piece of the build log for the reference
Step 8 (Add check check-llvm) failure: test (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
/home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
/home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
/home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
/home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
/home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
/home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
/home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
/home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
/home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
/home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
+ /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.build/bin/FileCheck /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
/home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll:35:13: error: CHECK-11: expected string not found in input
; CHECK-11: function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)
            ^
<stdin>:1:1: note: scanning from here
function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;no-memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;memdep;no-memoryssa>)
^

Input file: <stdin>
Check file: /home/botworker/builds/openmp-offload-amdgpu-runtime-2/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll

-dump-input=help explains the following input dump.

...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

LLVM Buildbot has detected a new failure on builder clang-m68k-linux-cross running on suse-gary-m68k-cross while building llvm at step 5 "ninja check 1".

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

Here is the relevant piece of the build log for the reference
Step 5 (ninja check 1) failure: stage 1 checked (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
/var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
/var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
/var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
/var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
/var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
/var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
/var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
/var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
/var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
/var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
+ /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/stage1/bin/FileCheck /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
/var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll:35:13: error: CHECK-11: expected string not found in input
; CHECK-11: function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)
            ^
<stdin>:1:1: note: scanning from here
function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;no-memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;memdep;no-memoryssa>)
^

Input file: <stdin>
Check file: /var/lib/buildbot/workers/suse-gary-m68k-cross/clang-m68k-linux-cross/llvm/llvm/test/Other/new-pm-print-pipeline.ll

-dump-input=help explains the following input dump.

...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

LLVM Buildbot has detected a new failure on builder clang-aarch64-quick running on linaro-clang-aarch64-quick while building llvm at step 5 "ninja check 1".

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

Here is the relevant piece of the build log for the reference
Step 5 (ninja check 1) failure: stage 1 checked (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
/home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
/home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
/home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
/home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
/home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
/home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
/home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
/home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
/home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
/home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
+ /home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
/home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll:35:13: error: CHECK-11: expected string not found in input
; CHECK-11: function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)
            ^
<stdin>:1:1: note: scanning from here
function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;no-memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;memdep;no-memoryssa>)
^

Input file: <stdin>
Check file: /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll

-dump-input=help explains the following input dump.

...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

LLVM Buildbot has detected a new failure on builder clang-cmake-x86_64-avx512-linux running on avx512-intel64 while building llvm at step 7 "ninja check 1".

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

Here is the relevant piece of the build log for the reference
Step 7 (ninja check 1) failure: stage 1 checked (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/FileCheck /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
+ /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll:35:13: error: CHECK-11: expected string not found in input
; CHECK-11: function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)
            ^
<stdin>:1:1: note: scanning from here
function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;no-memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;memdep;no-memoryssa>)
^

Input file: <stdin>
Check file: /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/test/Other/new-pm-print-pipeline.ll

-dump-input=help explains the following input dump.

...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

LLVM Buildbot has detected a new failure on builder ml-opt-dev-x86-64 running on ml-opt-dev-x86-64-b1 while building llvm at step 6 "test-build-unified-tree-check-all".

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

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
+ /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
/b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
+ /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
/b/ml-opt-dev-x86-64-b1/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /b/ml-opt-dev-x86-64-b1/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
+ /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
/b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
+ /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
/b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
+ /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
/b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
+ /b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
/b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
+ /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
/b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
+ /b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
/b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
+ /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
/b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
+ /b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
/b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /b/ml-opt-dev-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
+ /b/ml-opt-dev-x86-64-b1/build/bin/FileCheck /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
/b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll:35:13: error: CHECK-11: expected string not found in input
; CHECK-11: function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)
            ^
<stdin>:1:1: note: scanning from here
function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;no-memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;memdep;no-memoryssa>)
^

Input file: <stdin>
Check file: /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll

-dump-input=help explains the following input dump.

...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

LLVM Buildbot has detected a new failure on builder clang-armv8-quick running on linaro-clang-armv8-quick while building llvm at step 5 "ninja check 1".

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

Here is the relevant piece of the build log for the reference
Step 5 (ninja check 1) failure: stage 1 checked (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
/home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
/home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
/home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
/home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
/home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
/home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
/home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
/home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
/home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
/home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll | /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/FileCheck /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
+ /home/tcwg-buildbot/worker/clang-armv8-quick/stage1/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
/home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll:35:13: error: CHECK-11: expected string not found in input
; CHECK-11: function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)
            ^
<stdin>:1:1: note: scanning from here
function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;no-memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;memdep;no-memoryssa>)
^

Input file: <stdin>
Check file: /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/test/Other/new-pm-print-pipeline.ll

-dump-input=help explains the following input dump.

...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

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

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

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
+ /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/bin/FileCheck /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
�[1m/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll:35:13: �[0m�[0;1;31merror: �[0m�[1mCHECK-11: expected string not found in input
�[0m; CHECK-11: function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)
�[0;1;32m            ^
�[0m�[1m<stdin>:1:1: �[0m�[0;1;30mnote: �[0m�[1mscanning from here
�[0mfunction(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;no-memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;memdep;no-memoryssa>)
�[0;1;32m^
�[0m
Input file: <stdin>
Check file: /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll

-dump-input=help explains the following input dump.

...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

LLVM Buildbot has detected a new failure on builder ml-opt-devrel-x86-64 running on ml-opt-devrel-x86-64-b2 while building llvm at step 6 "test-build-unified-tree-check-all".

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

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
+ /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
/b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
+ /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
/b/ml-opt-devrel-x86-64-b1/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
+ /b/ml-opt-devrel-x86-64-b1/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
/b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
+ /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
/b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
+ /b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
/b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
+ /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
/b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
+ /b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
/b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
+ /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
/b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
+ /b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
/b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
+ /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
/b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /b/ml-opt-devrel-x86-64-b1/build/bin/FileCheck /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
+ /b/ml-opt-devrel-x86-64-b1/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
/b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll:35:13: error: CHECK-11: expected string not found in input
; CHECK-11: function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)
            ^
<stdin>:1:1: note: scanning from here
function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;no-memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;memdep;no-memoryssa>)
^

Input file: <stdin>
Check file: /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll

-dump-input=help explains the following input dump.

...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

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

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

Here is the relevant piece of the build log for the reference
Step 9 (Add check check-llvm) failure: test (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
/home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
/home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
/home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
/home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
/home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
/home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
/home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
/home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
/home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
/home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/FileCheck /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
+ /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
/home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll:35:13: error: CHECK-11: expected string not found in input
; CHECK-11: function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)
            ^
<stdin>:1:1: note: scanning from here
function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;no-memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;memdep;no-memoryssa>)
^

Input file: <stdin>
Check file: /home/botworker/bbot/builds/openmp-offload-sles-build/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll

-dump-input=help explains the following input dump.

...

madhur13490 added a commit to madhur13490/llvm-project that referenced this pull request Jul 21, 2025
madhur13490 added a commit that referenced this pull request Jul 21, 2025
@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

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

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

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
/Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
/Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
/Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
/Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
/Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
/Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
/Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
/Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
/Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
/Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
+ /Users/buildbot/buildbot-root/aarch64-darwin/build/bin/FileCheck /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
�[1m/Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll:35:13: �[0m�[0;1;31merror: �[0m�[1mCHECK-11: expected string not found in input
�[0m; CHECK-11: function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)
�[0;1;32m            ^
�[0m�[1m<stdin>:1:1: �[0m�[0;1;30mnote: �[0m�[1mscanning from here
�[0mfunction(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;no-memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;memdep;no-memoryssa>)
�[0;1;32m^
�[0m
Input file: <stdin>
Check file: /Users/buildbot/buildbot-root/aarch64-darwin/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll

-dump-input=help explains the following input dump.

...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

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

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

Here is the relevant piece of the build log for the reference
Step 7 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stdout):
--
# RUN: at line 3
z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe' -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
# note: command had no output on stdout or stderr
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll' --match-full-lines --check-prefixes=CHECK-0
# note: command had no output on stdout or stderr
# RUN: at line 6
z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe' -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
# note: command had no output on stdout or stderr
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll' --match-full-lines --check-prefixes=CHECK-1
# note: command had no output on stdout or stderr
# RUN: at line 10
z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll -disable-pipeline-verification | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe' -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
# note: command had no output on stdout or stderr
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll' --match-full-lines --check-prefixes=CHECK-3
# note: command had no output on stdout or stderr
# RUN: at line 13
z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe' -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
# note: command had no output on stdout or stderr
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll' --match-full-lines --check-prefixes=CHECK-4
# note: command had no output on stdout or stderr
# RUN: at line 16
z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe' -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
# note: command had no output on stdout or stderr
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll' --match-full-lines --check-prefixes=CHECK-5
# note: command had no output on stdout or stderr
# RUN: at line 19
z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe' -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
# note: command had no output on stdout or stderr
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll' --match-full-lines --check-prefixes=CHECK-6
# note: command had no output on stdout or stderr
# RUN: at line 22
z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe' -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
# note: command had no output on stdout or stderr
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll' --match-full-lines --check-prefixes=CHECK-7
# note: command had no output on stdout or stderr
# RUN: at line 25
z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe Z:\b\llvm-clang-x86_64-sie-win\llvm-project\llvm\test\Other\new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
# executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\opt.exe' -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

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

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

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
/b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
/b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
/b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
/b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
/b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
/b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
/b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
/b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
/b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
/b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll | /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/FileCheck /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
+ /b/1/clang-x86_64-debian-fast/llvm.obj/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
/b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll:35:13: error: CHECK-11: expected string not found in input
; CHECK-11: function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)
            ^
<stdin>:1:1: note: scanning from here
function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;no-memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;memdep;no-memoryssa>)
^

Input file: <stdin>
Check file: /b/1/clang-x86_64-debian-fast/llvm.src/llvm/test/Other/new-pm-print-pipeline.ll

-dump-input=help explains the following input dump.

...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

LLVM Buildbot has detected a new failure on builder fuchsia-x86_64-linux running on fuchsia-debian-64-us-central1-a-1 while building llvm at step 4 "annotate".

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

Here is the relevant piece of the build log for the reference
Step 4 (annotate) failure: 'python ../llvm-zorg/zorg/buildbot/builders/annotated/fuchsia-linux.py ...' (failure)
...
  Passed           : 46650 (97.77%)
  Expectedly Failed:    27 (0.06%)
[1390/1392] Linking CXX executable unittests/Transforms/Scalar/ScalarTests
[1391/1392] Running the LLVM regression tests
llvm-lit: /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/utils/lit/lit/llvm/config.py:520: note: using ld.lld: /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/ld.lld
llvm-lit: /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/utils/lit/lit/llvm/config.py:520: note: using lld-link: /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/lld-link
llvm-lit: /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/utils/lit/lit/llvm/config.py:520: note: using ld64.lld: /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/ld64.lld
llvm-lit: /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/utils/lit/lit/llvm/config.py:520: note: using wasm-ld: /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/wasm-ld
-- Testing: 60230 tests, 60 workers --
Testing:  0.. 10.. 20.. 30.. 40.. 50.. 60..
FAIL: LLVM :: Other/new-pm-print-pipeline.ll (41414 of 60230)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
Step 7 (check) failure: check (failure)
...
  Passed           : 46650 (97.77%)
  Expectedly Failed:    27 (0.06%)
[1390/1392] Linking CXX executable unittests/Transforms/Scalar/ScalarTests
[1391/1392] Running the LLVM regression tests
llvm-lit: /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/utils/lit/lit/llvm/config.py:520: note: using ld.lld: /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/ld.lld
llvm-lit: /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/utils/lit/lit/llvm/config.py:520: note: using lld-link: /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/lld-link
llvm-lit: /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/utils/lit/lit/llvm/config.py:520: note: using ld64.lld: /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/ld64.lld
llvm-lit: /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/utils/lit/lit/llvm/config.py:520: note: using wasm-ld: /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/wasm-ld
-- Testing: 60230 tests, 60 workers --
Testing:  0.. 10.. 20.. 30.. 40.. 50.. 60..
FAIL: LLVM :: Other/new-pm-print-pipeline.ll (41414 of 60230)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
+ /var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-bbf3e756/bin/FileCheck /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

LLVM Buildbot has detected a new failure on builder clang-debian-cpp20 running on clang-debian-cpp20 while building llvm at step 6 "test-build-unified-tree-check-all".

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

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
+ /vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/bin/FileCheck /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll:35:13: error: CHECK-11: expected string not found in input
; CHECK-11: function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)
            ^
<stdin>:1:1: note: scanning from here
function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;no-memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;memdep;no-memoryssa>)
^

Input file: <stdin>
Check file: /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll

-dump-input=help explains the following input dump.

...

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jul 21, 2025

LLVM Buildbot has detected a new failure on builder clang-ppc64le-linux-test-suite running on ppc64le-clang-test-suite while building llvm at step 6 "test-build-unified-tree-check-all".

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

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
******************** TEST 'LLVM :: Other/new-pm-print-pipeline.ll' FAILED ********************
Exit Code: 1

Command Output (stderr):
--
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(adce),function(adce)' < /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0 # RUN: at line 3
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(adce),function(adce)'
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-0
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)' < /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1 # RUN: at line 6
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=module(rpo-function-attrs,require<globals-aa>,function(float2int,lower-constant-intrinsics,loop(loop-rotate)),invalidate<globals-aa>)'
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-1
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes -passes='function(mem2reg)' < /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll -disable-pipeline-verification | /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3 # RUN: at line 10
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -o /dev/null -disable-verify -print-pipeline-passes '-passes=function(mem2reg)' -disable-pipeline-verification
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-3
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(indvars))' < /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4 # RUN: at line 13
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-mssa(indvars))'
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-4
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5 # RUN: at line 16
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))'
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-5
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(ee-instrument<>,ee-instrument<post-inline>)' < /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6 # RUN: at line 19
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(ee-instrument<>,ee-instrument<post-inline>)'
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-6
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)' < /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7 # RUN: at line 22
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-7
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=loop(simple-loop-unswitch<nontrivial;trivial>,simple-loop-unswitch<no-nontrivial;no-trivial>)'
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)' < /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8 # RUN: at line 25
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(mldst-motion<split-footer-bb>,mldst-motion<no-split-footer-bb>)'
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-8
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)' < /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9 # RUN: at line 28
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(lower-matrix-intrinsics<>,lower-matrix-intrinsics<minimal>)'
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-9
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)' < /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10 # RUN: at line 31
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(loop-unroll<>,loop-unroll<partial;peeling;runtime;upperbound;profile-peeling;full-unroll-max=5;O1>,loop-unroll<no-partial;no-peeling;no-runtime;no-upperbound;no-profile-peeling;full-unroll-max=7;O1>)'
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-10
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes -passes='function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)' < /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll | /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11 # RUN: at line 34
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/opt -disable-output -disable-verify -print-pipeline-passes '-passes=function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)'
+ /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/bin/FileCheck /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll --match-full-lines --check-prefixes=CHECK-11
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll:35:13: error: CHECK-11: expected string not found in input
; CHECK-11: function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;no-memdep;no-memoryssa>)
            ^
<stdin>:1:1: note: scanning from here
function(gvn<>,gvn<pre;load-pre;split-backedge-load-pre;no-memdep;memoryssa>,gvn<no-pre;no-load-pre;no-split-backedge-load-pre;memdep;no-memoryssa>)
^

Input file: <stdin>
Check file: /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/test/Other/new-pm-print-pipeline.ll

-dump-input=help explains the following input dump.

...

madhur13490 added a commit to madhur13490/llvm-project that referenced this pull request Jul 21, 2025
Enabling one of MemorySSA or MD implies the other is off.
madhur13490 added a commit that referenced this pull request Jul 21, 2025
Enabling one of MemorySSA or MD implies the other is off.

Already approved in #149473 but
I had to revert as I missed updating one test.
llvm-sync bot pushed a commit to arm/arm-toolchain that referenced this pull request Jul 21, 2025
…9767)

Enabling one of MemorySSA or MD implies the other is off.

Already approved in llvm/llvm-project#149473 but
I had to revert as I missed updating one test.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants