Skip to content

[GISel] Add more FP opcodes to CSE #123624

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
Jan 22, 2025
Merged

[GISel] Add more FP opcodes to CSE #123624

merged 1 commit into from
Jan 22, 2025

Conversation

lialan
Copy link
Member

@lialan lialan commented Jan 20, 2025

This fixes #122724

Copy link

github-actions bot commented Jan 20, 2025

✅ With the latest revision this PR passed the C/C++ code formatter.

@lialan
Copy link
Member Author

lialan commented Jan 21, 2025

Probably worth adding more FP ops to CSE in this PR.

@lialan lialan marked this pull request as ready for review January 21, 2025 03:34
@llvmbot
Copy link
Member

llvmbot commented Jan 21, 2025

@llvm/pr-subscribers-llvm-globalisel

Author: lialan (lialan)

Changes

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

2 Files Affected:

  • (modified) llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp (+1)
  • (modified) llvm/unittests/CodeGen/GlobalISel/CSETest.cpp (+6)
diff --git a/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp b/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
index 0ac4a8a0aa910b..4e225cccdec65f 100644
--- a/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
+++ b/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
@@ -65,6 +65,7 @@ bool CSEConfigFull::shouldCSEOpc(unsigned Opc) {
   case TargetOpcode::G_BUILD_VECTOR:
   case TargetOpcode::G_BUILD_VECTOR_TRUNC:
   case TargetOpcode::G_SEXT_INREG:
+  case TargetOpcode::G_FDIV:
     return true;
   }
   return false;
diff --git a/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp b/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
index 822707a1f4ed32..8503be09ed5539 100644
--- a/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
+++ b/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
@@ -9,6 +9,7 @@
 #include "GISelMITest.h"
 #include "llvm/CodeGen/GlobalISel/CSEInfo.h"
 #include "llvm/CodeGen/GlobalISel/CSEMIRBuilder.h"
+#include "llvm/CodeGenTypes/LowLevelType.h"
 #include "gtest/gtest.h"
 
 namespace {
@@ -75,6 +76,11 @@ TEST_F(AArch64GISelMITest, TestCSE) {
   auto MIBUnmerge2 = CSEB.buildUnmerge({s32, s32}, Copies[0]);
   EXPECT_TRUE(&*MIBUnmerge == &*MIBUnmerge2);
 
+  // Check G_FDIV
+  auto MIBFDiv = CSEB.buildFDiv(s32, Copies[0], Copies[1]);
+  auto MIBFDiv2 = CSEB.buildFDiv(s32, Copies[0], Copies[1]);
+  EXPECT_TRUE(&*MIBFDiv == &*MIBFDiv2);
+
   // Check G_BUILD_VECTOR
   Register Reg1 = MRI->createGenericVirtualRegister(s32);
   Register Reg2 = MRI->createGenericVirtualRegister(s32);

@arsenm
Copy link
Contributor

arsenm commented Jan 21, 2025

Should adjust title to cover more opcodes

@lialan lialan changed the title [GISel] Add G_FDIV to CSE [GISel] Add more FP opcodes to CSE Jan 21, 2025
case TargetOpcode::G_FMUL:
case TargetOpcode::G_FDIV:
case TargetOpcode::G_FNEG:
case TargetOpcode::G_FABS:
Copy link
Contributor

Choose a reason for hiding this comment

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

The various mins and maxes also

Copy link
Member Author

Choose a reason for hiding this comment

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

question: should we fold G_FMINNUM/G_FMANNUM? the result of comparing 0 and -0 could be different.

Copy link
Contributor

Choose a reason for hiding this comment

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

Yes. It also couldn't be. We're also fixing the definition to always have the correct ordered zero handling, so it would just be subject to the ordinary nsz flag handling

Copy link
Collaborator

@qcolombet qcolombet left a comment

Choose a reason for hiding this comment

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

Thanks for fixing this @lialan !
LGTM too

EXPECT_TRUE(&*MIBFMinNum == &*MIBFMinNum2);

MIBFMinNum2.setFlag(MachineInstr::FmNsz);
EXPECT_FALSE(&*MIBFMinNum == &*MIBFMinNum2);
Copy link
Contributor

Choose a reason for hiding this comment

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

I believe the DAG behavior is to drop the flag and end up with one flagless node

MIBFMinNum2.clearFlag(MachineInstr::FmNsz);
EXPECT_TRUE(&*MIBFMinNum == &*MIBFMinNum2);

auto MIBFMaxNum = CSEB.buildInstr(TargetOpcode::G_FMAXNUM, {s32},
Copy link
Contributor

Choose a reason for hiding this comment

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

If we don't have wrappers around buildInstr for these, they should be added

@lialan
Copy link
Member Author

lialan commented Jan 22, 2025

Please bear with me. There seems to have some weird issues with the CI.

Going to bisect and see where the culprit is.

@hanhanW hanhanW merged commit 43177b5 into llvm:main Jan 22, 2025
5 of 8 checks passed
@lialan lialan deleted the lialan/cse_fdiv branch January 22, 2025 14:23
@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 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 5 "build-unified-tree".

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

Here is the relevant piece of the build log for the reference
Step 5 (build-unified-tree) failure: build (failure)
...
8.131 [91/17/134] Linking CXX executable unittests/Transforms/Instrumentation/InstrumentationTests
8.149 [91/16/135] Linking CXX executable tools/clang/unittests/AST/ByteCode/InterpTests
8.219 [91/15/136] Linking CXX executable unittests/Transforms/Coroutines/CoroTests
8.235 [91/14/137] Linking CXX executable tools/clang/unittests/Serialization/SerializationTests
8.267 [91/13/138] Linking CXX executable tools/clang/unittests/Sema/SemaTests
8.272 [91/12/139] Linking CXX executable tools/clang/unittests/Rewrite/RewriteTests
8.282 [91/11/140] Linking CXX executable tools/clang/unittests/Support/ClangSupportTests
8.351 [91/10/141] Linking CXX executable unittests/Transforms/Utils/UtilsTests
8.368 [91/9/142] Linking CXX executable unittests/tools/llvm-cfi-verify/CFIVerifyTests
8.473 [91/8/143] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
/opt/ccache/bin/g++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/unittests/CodeGen/GlobalISel -I/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel -I/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/build/include -I/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/include -I/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/third-party/unittest/googletest/include -I/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/third-party/unittest/googlemock/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -fno-lifetime-dse -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-uninitialized -Wno-nonnull -Wno-class-memaccess -Wno-redundant-move -Wno-pessimizing-move -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -Wno-misleading-indentation -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG  -Wno-dangling-else -Wno-variadic-macros -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -std=c++17 -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp: In member function ‘virtual void {anonymous}::AArch64GISelMITest_TestCSE_Test::TestBody()’:
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:126:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  126 |     MIBFDiv2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:136:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  136 |     MIBFAbs2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:139:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  139 |     MIBFAbs2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/home/buildbot/buildbot-root/llvm-clang-x86_64-gcc-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:149:17: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 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/16278

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
...
4.175 [2/10/76] Linking CXX executable unittests/ExecutionEngine/Orc/OrcJITTests
4.203 [2/9/77] Linking CXX executable unittests/IR/IRTests
4.266 [2/8/78] Linking CXX executable unittests/tools/llvm-exegesis/LLVMExegesisTests
4.305 [2/7/79] Linking CXX executable unittests/Transforms/Scalar/ScalarTests
4.320 [2/6/80] Linking CXX executable tools/clang/unittests/Frontend/FrontendTests
4.392 [2/5/81] Linking CXX executable unittests/Passes/Plugins/PluginsTests
4.655 [2/4/82] Linking CXX executable unittests/ExecutionEngine/MCJIT/MCJITTests
5.071 [2/3/83] Linking CXX executable tools/clang/unittests/Interpreter/ClangReplInterpreterTests
5.196 [2/2/84] Linking CXX executable tools/clang/unittests/Interpreter/ExceptionTests/ClangReplInterpreterExceptionTests
7.634 [2/1/85] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
CCACHE_CPP2=yes CCACHE_HASHDIR=yes /usr/bin/ccache /usr/bin/g++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/unittests/CodeGen/GlobalISel -I/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/unittests/CodeGen/GlobalISel -I/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/build/include -I/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/include -I/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/third-party/unittest/googletest/include -I/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/third-party/unittest/googlemock/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -fno-lifetime-dse -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-uninitialized -Wno-nonnull -Wno-class-memaccess -Wno-redundant-move -Wno-pessimizing-move -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -Wno-misleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG  -Wno-dangling-else -Wno-variadic-macros -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -std=c++17 -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp: In member function ‘virtual void {anonymous}::AArch64GISelMITest_TestCSE_Test::TestBody()’:
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:126:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  126 |     MIBFDiv2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:136:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  136 |     MIBFAbs2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:139:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  139 |     MIBFAbs2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/home/buildbot/buildbot-root/llvm-clang-x86_64-sie-ubuntu-fast/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:149:17: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 2025

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

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

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
...
18.562 [2/17/60] Linking CXX executable unittests/tools/llvm-profdata/LLVMProfdataTests
18.623 [2/16/61] Linking CXX executable unittests/Transforms/Vectorize/SandboxVectorizer/SandboxVectorizerTests
18.993 [2/15/62] Linking CXX executable unittests/ExecutionEngine/MCJIT/MCJITTests
19.225 [2/14/63] Linking CXX executable unittests/tools/llvm-cfi-verify/CFIVerifyTests
19.467 [2/13/64] Linking CXX executable unittests/Target/TargetMachineCTests
19.665 [2/12/65] Linking CXX executable unittests/Transforms/Instrumentation/InstrumentationTests
19.726 [2/11/66] Linking CXX executable unittests/Transforms/Coroutines/CoroTests
20.056 [2/10/67] Linking CXX executable unittests/Passes/PassBuilderBindings/PassesBindingsTests
20.368 [2/9/68] Linking CXX executable unittests/Transforms/Utils/UtilsTests
20.447 [2/8/69] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
/usr/bin/c++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -Iunittests/CodeGen/GlobalISel -I/buildbot/worker/arc-folder/llvm-project/llvm/unittests/CodeGen/GlobalISel -Iinclude -I/buildbot/worker/arc-folder/llvm-project/llvm/include -I/buildbot/worker/arc-folder/llvm-project/third-party/unittest/googletest/include -I/buildbot/worker/arc-folder/llvm-project/third-party/unittest/googlemock/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -fno-lifetime-dse -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-uninitialized -Wno-nonnull -Wno-class-memaccess -Wno-redundant-move -Wno-pessimizing-move -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -Wno-misleading-indentation -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG  -Wno-dangling-else -Wno-variadic-macros -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -std=c++17 -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /buildbot/worker/arc-folder/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/buildbot/worker/arc-folder/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp: In member function 'virtual void {anonymous}::AArch64GISelMITest_TestCSE_Test::TestBody()':
/buildbot/worker/arc-folder/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: 'class llvm::MachineInstrBuilder' has no member named 'setFlag'; did you mean 'setMIFlag'?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/buildbot/worker/arc-folder/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:14: error: 'class llvm::MachineInstrBuilder' has no member named 'clearFlag'
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/buildbot/worker/arc-folder/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: 'class llvm::MachineInstrBuilder' has no member named 'setFlag'; did you mean 'setMIFlag'?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/buildbot/worker/arc-folder/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:14: error: 'class llvm::MachineInstrBuilder' has no member named 'clearFlag'
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/buildbot/worker/arc-folder/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: 'class llvm::MachineInstrBuilder' has no member named 'setFlag'; did you mean 'setMIFlag'?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/buildbot/worker/arc-folder/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:14: error: 'class llvm::MachineInstrBuilder' has no member named 'clearFlag'
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/buildbot/worker/arc-folder/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: 'class llvm::MachineInstrBuilder' has no member named 'setFlag'; did you mean 'setMIFlag'?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/buildbot/worker/arc-folder/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:126:14: error: 'class llvm::MachineInstrBuilder' has no member named 'clearFlag'
  126 |     MIBFDiv2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/buildbot/worker/arc-folder/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:136:14: error: 'class llvm::MachineInstrBuilder' has no member named 'setFlag'; did you mean 'setMIFlag'?
  136 |     MIBFAbs2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/buildbot/worker/arc-folder/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:139:14: error: 'class llvm::MachineInstrBuilder' has no member named 'clearFlag'
  139 |     MIBFAbs2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/buildbot/worker/arc-folder/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:149:17: error: 'class llvm::MachineInstrBuilder' has no member named 'setFlag'; did you mean 'setMIFlag'?

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 2025

LLVM Buildbot has detected a new failure on builder llvm-nvptx-nvidia-ubuntu running on as-builder-7 while building llvm at step 6 "test-build-unified-tree-check-llvm".

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

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-llvm) failure: test (failure)
...
1.140 [2/10/688] Linking CXX executable unittests/ExecutionEngine/Orc/OrcJITTests
1.156 [2/9/689] Linking CXX executable unittests/Transforms/Utils/UtilsTests
1.196 [2/8/690] Linking CXX executable unittests/tools/llvm-exegesis/LLVMExegesisTests
1.220 [2/7/691] Linking CXX executable unittests/CodeGen/CodeGenTests
1.233 [2/6/692] Linking CXX executable unittests/Frontend/LLVMFrontendTests
1.274 [2/5/693] Linking CXX executable unittests/Analysis/AnalysisTests
1.383 [2/4/694] Linking CXX executable unittests/IR/IRTests
1.506 [2/3/695] Linking CXX executable unittests/ADT/ADTTests
1.508 [2/2/696] Linking CXX executable unittests/Support/SupportTests
10.260 [2/1/697] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
CCACHE_CPP2=yes CCACHE_HASHDIR=yes /usr/bin/ccache /usr/bin/c++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/unittests/CodeGen/GlobalISel -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/build/include -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/include -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/third-party/unittest/googletest/include -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/third-party/unittest/googlemock/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -fno-lifetime-dse -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-uninitialized -Wno-nonnull -Wno-class-memaccess -Wno-redundant-move -Wno-pessimizing-move -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -Wno-misleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG  -Wno-dangling-else -Wno-variadic-macros -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -std=c++17 -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp: In member function ‘virtual void {anonymous}::AArch64GISelMITest_TestCSE_Test::TestBody()’:
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:126:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  126 |     MIBFDiv2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:136:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  136 |     MIBFAbs2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:139:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  139 |     MIBFAbs2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:149:17: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 2025

LLVM Buildbot has detected a new failure on builder ml-opt-rel-x86-64 running on ml-opt-rel-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/185/builds/11889

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
...
6.558 [2/10/736] Linking CXX executable unittests/MIR/MIRTests
6.703 [2/9/737] Linking CXX executable unittests/tools/llvm-mca/LLVMMCATests
6.707 [2/8/738] Linking CXX executable unittests/CodeGen/CodeGenTests
6.759 [2/7/739] Linking CXX executable unittests/DebugInfo/LogicalView/DebugInfoLogicalViewTests
6.801 [2/6/740] Linking CXX executable unittests/DebugInfo/DWARF/DebugInfoDWARFTests
6.833 [2/5/741] Linking CXX executable unittests/Transforms/Scalar/ScalarTests
6.840 [2/4/742] Linking CXX executable unittests/MI/MITests
7.051 [2/3/743] Linking CXX executable unittests/Target/TargetMachineCTests
7.611 [2/2/744] Linking CXX executable unittests/tools/llvm-exegesis/LLVMExegesisTests
9.483 [2/1/745] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
ccache /usr/bin/c++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/b/ml-opt-rel-x86-64-b1/build/unittests/CodeGen/GlobalISel -I/b/ml-opt-rel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel -I/var/lib/buildbot/.local/lib/python3.7/site-packages/tensorflow/include -I/b/ml-opt-rel-x86-64-b1/build/include -I/b/ml-opt-rel-x86-64-b1/llvm-project/llvm/include -I/b/ml-opt-rel-x86-64-b1/llvm-project/third-party/unittest/googletest/include -I/b/ml-opt-rel-x86-64-b1/llvm-project/third-party/unittest/googlemock/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -fno-lifetime-dse -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-uninitialized -Wno-nonnull -Wno-class-memaccess -Wno-redundant-move -Wno-pessimizing-move -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -Wno-misleading-indentation -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG  -Wno-dangling-else -Wno-variadic-macros -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -std=c++17 -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /b/ml-opt-rel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/b/ml-opt-rel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp: In member function ‘virtual void {anonymous}::AArch64GISelMITest_TestCSE_Test::TestBody()’:
/b/ml-opt-rel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/b/ml-opt-rel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/b/ml-opt-rel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/b/ml-opt-rel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/b/ml-opt-rel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/b/ml-opt-rel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/b/ml-opt-rel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/b/ml-opt-rel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:126:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  126 |     MIBFDiv2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/b/ml-opt-rel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:136:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  136 |     MIBFAbs2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/b/ml-opt-rel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:139:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  139 |     MIBFAbs2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/b/ml-opt-rel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:149:17: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 2025

LLVM Buildbot has detected a new failure on builder llvm-clang-x86_64-win-fast running on as-builder-3 while building llvm at step 7 "test-build-unified-tree-check-llvm-unit".

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

Here is the relevant piece of the build log for the reference
Step 7 (test-build-unified-tree-check-llvm-unit) failure: test (failure)
...
[726/737] Linking CXX executable unittests\Target\TargetMachineCTests.exe
[727/737] Linking CXX executable unittests\tools\llvm-exegesis\LLVMExegesisTests.exe
[728/737] Linking CXX executable unittests\Passes\PassBuilderBindings\PassesBindingsTests.exe
[729/737] Linking CXX executable unittests\Target\ARM\ARMTests.exe
[730/737] Linking CXX executable unittests\IR\IRTests.exe
[731/737] Linking CXX executable unittests\Transforms\Instrumentation\InstrumentationTests.exe
[732/737] Linking CXX executable unittests\Transforms\Coroutines\CoroTests.exe
[733/737] Linking CXX executable unittests\Transforms\Utils\UtilsTests.exe
[734/737] Linking CXX executable unittests\Transforms\Scalar\ScalarTests.exe
[735/737] Building CXX object unittests\CodeGen\GlobalISel\CMakeFiles\GlobalISelTests.dir\CSETest.cpp.obj
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.obj 
C:\ninja\ccache.exe C:\PROGRA~1\MICROS~2\2022\COMMUN~1\VC\Tools\MSVC\1438~1.331\bin\Hostx64\x64\cl.exe  /nologo /TP -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -DUNICODE -D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS -D_HAS_EXCEPTIONS=0 -D_SCL_SECURE_NO_DEPRECATE -D_SCL_SECURE_NO_WARNINGS -D_UNICODE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -IC:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\build\unittests\CodeGen\GlobalISel -IC:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel -IC:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\build\include -IC:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include -IC:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\third-party\unittest\googletest\include -IC:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\third-party\unittest\googlemock\include /DWIN32 /D_WINDOWS   /Zc:inline /Zc:preprocessor /Zc:__cplusplus /Oi /bigobj /permissive- /W4 -wd4141 -wd4146 -wd4244 -wd4267 -wd4291 -wd4351 -wd4456 -wd4457 -wd4458 -wd4459 -wd4503 -wd4624 -wd4722 -wd4100 -wd4127 -wd4512 -wd4505 -wd4610 -wd4510 -wd4702 -wd4245 -wd4706 -wd4310 -wd4701 -wd4703 -wd4389 -wd4611 -wd4805 -wd4204 -wd4577 -wd4091 -wd4592 -wd4319 -wd4709 -wd5105 -wd4324 -wd4251 -wd4275 -w14062 -we4238 /Gw /O2 /Ob2 /DNDEBUG -MD  /EHs-c- /GR- -std:c++17 /showIncludes /Founittests\CodeGen\GlobalISel\CMakeFiles\GlobalISelTests.dir\CSETest.cpp.obj /Fdunittests\CodeGen\GlobalISel\CMakeFiles\GlobalISelTests.dir\ /FS -c C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(84): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include\llvm/CodeGen/GlobalISel/LegalizerHelper.h(39): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(87): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include\llvm/CodeGen/GlobalISel/LegalizerHelper.h(39): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(97): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include\llvm/CodeGen/GlobalISel/LegalizerHelper.h(39): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(100): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include\llvm/CodeGen/GlobalISel/LegalizerHelper.h(39): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(110): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include\llvm/CodeGen/GlobalISel/LegalizerHelper.h(39): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(113): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include\llvm/CodeGen/GlobalISel/LegalizerHelper.h(39): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(123): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include\llvm/CodeGen/GlobalISel/LegalizerHelper.h(39): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(126): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include\llvm/CodeGen/GlobalISel/LegalizerHelper.h(39): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(136): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include\llvm/CodeGen/GlobalISel/LegalizerHelper.h(39): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(139): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include\llvm/CodeGen/GlobalISel/LegalizerHelper.h(39): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(149): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include\llvm/CodeGen/GlobalISel/LegalizerHelper.h(39): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(152): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include\llvm/CodeGen/GlobalISel/LegalizerHelper.h(39): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(161): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include\llvm/CodeGen/GlobalISel/LegalizerHelper.h(39): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(164): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include\llvm/CodeGen/GlobalISel/LegalizerHelper.h(39): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(174): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include\llvm/CodeGen/GlobalISel/LegalizerHelper.h(39): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(177): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include\llvm/CodeGen/GlobalISel/LegalizerHelper.h(39): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(186): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include\llvm/CodeGen/GlobalISel/LegalizerHelper.h(39): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(189): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-3\llvm-clang-x86_64-win-fast\llvm-project\llvm\include\llvm/CodeGen/GlobalISel/LegalizerHelper.h(39): note: see declaration of 'llvm::MachineInstrBuilder'
ninja: build stopped: subcommand failed.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 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/11034

Here is the relevant piece of the build log for the reference
Step 5 (ninja check 1) failure: stage 1 checked (failure)
...
[72/83] Linking CXX executable tools/clang/unittests/AST/ASTTests
[73/83] Linking CXX executable tools/clang/unittests/Driver/ClangDriverTests
[74/83] Linking CXX executable tools/clang/tools/extra/unittests/clang-tidy/ClangTidyTests
[75/83] Linking CXX executable tools/clang/unittests/CodeGen/ClangCodeGenTests
[76/83] Linking CXX executable tools/clang/unittests/Tooling/ToolingTests
[77/83] Linking CXX executable tools/clang/unittests/Frontend/FrontendTests
[78/83] Linking CXX executable tools/clang/unittests/Interpreter/ExceptionTests/ClangReplInterpreterExceptionTests
[79/83] Linking CXX executable tools/clang/unittests/Interpreter/ClangReplInterpreterTests
[80/83] Linking CXX executable tools/clang/tools/extra/clangd/unittests/ClangdTests
[81/83] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
/usr/local/bin/c++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/unittests/CodeGen/GlobalISel -I/home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/unittests/CodeGen/GlobalISel -I/home/tcwg-buildbot/worker/clang-aarch64-quick/stage1/include -I/home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/include -I/home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/third-party/unittest/googletest/include -I/home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/third-party/unittest/googlemock/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wmissing-field-initializers -pedantic -Wno-long-long -Wc++98-compat-extra-semi -Wimplicit-fallthrough -Wcovered-switch-default -Wno-noexcept-type -Wnon-virtual-dtor -Wdelete-non-virtual-dtor -Wsuggest-override -Wstring-conversion -Wmisleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG -std=c++17  -Wno-variadic-macros -Wno-gnu-zero-variadic-macro-arguments -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /home/tcwg-buildbot/worker/clang-aarch64-quick/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
../llvm/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |             ^
      |             ->
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
../llvm/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |             ^
      |             ->
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
../llvm/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |             ^
      |             ->
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 2025

LLVM Buildbot has detected a new failure on builder ml-opt-devrel-x86-64 running on ml-opt-devrel-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/175/builds/11894

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
...
6.761 [2/10/737] Linking CXX executable unittests/CodeGen/CodeGenTests
6.794 [2/9/738] Linking CXX executable unittests/MIR/MIRTests
6.803 [2/8/739] Linking CXX executable unittests/DebugInfo/DWARF/DebugInfoDWARFTests
6.940 [2/7/740] Linking CXX executable unittests/MI/MITests
6.947 [2/6/741] Linking CXX executable unittests/DebugInfo/LogicalView/DebugInfoLogicalViewTests
7.007 [2/5/742] Linking CXX executable unittests/Transforms/Scalar/ScalarTests
7.136 [2/4/743] Linking CXX executable unittests/tools/llvm-mca/LLVMMCATests
7.223 [2/3/744] Linking CXX executable unittests/Target/TargetMachineCTests
8.067 [2/2/745] Linking CXX executable unittests/tools/llvm-exegesis/LLVMExegesisTests
9.507 [2/1/746] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
ccache /usr/bin/c++ -DCPUINFO_SUPPORTED_PLATFORM=1 -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/b/ml-opt-devrel-x86-64-b1/build/unittests/CodeGen/GlobalISel -I/b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel -I/var/lib/buildbot/.local/lib/python3.7/site-packages/tensorflow/include -I/b/ml-opt-devrel-x86-64-b1/build/include -I/b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/include -I/b/ml-opt-devrel-x86-64-b1/llvm-project/third-party/unittest/googletest/include -I/b/ml-opt-devrel-x86-64-b1/llvm-project/third-party/unittest/googlemock/include -isystem /tmp/tflitebuild/tensorflow/include -isystem /tmp/tflitebuild/eigen/include/eigen3 -isystem /tmp/tflitebuild/abseil-cpp/include -isystem /tmp/tflitebuild/flatbuffers/include -isystem /tmp/tflitebuild/gemmlowp/include/gemmlowp -isystem /tmp/tflitebuild/ml_dtypes/src/ml_dtypes -isystem /tmp/tflitebuild/ml_dtypes/src/ml_dtypes/ml_dtypes -isystem /tmp/tflitebuild/ruy/include -isystem /tmp/tflitebuild/cpuinfo/include -isystem /tmp/tflitebuild/ARM_NEON_2_x86_SSE/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -fno-lifetime-dse -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-uninitialized -Wno-nonnull -Wno-class-memaccess -Wno-redundant-move -Wno-pessimizing-move -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -Wno-misleading-indentation -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG  -Wno-dangling-else -Wno-variadic-macros -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -DEIGEN_NEON_GEBP_NR=4 -DTFL_STATIC_LIBRARY_BUILD -Wno-suggest-override -std=c++17 -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp: In member function ‘virtual void {anonymous}::AArch64GISelMITest_TestCSE_Test::TestBody()’:
/b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:126:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  126 |     MIBFDiv2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:136:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  136 |     MIBFAbs2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:139:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  139 |     MIBFAbs2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/b/ml-opt-devrel-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:149:17: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 2025

LLVM Buildbot has detected a new failure on builder ml-opt-dev-x86-64 running on ml-opt-dev-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/137/builds/12039

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
...
7.126 [2/10/737] Linking CXX executable unittests/DebugInfo/DWARF/DebugInfoDWARFTests
7.182 [2/9/738] Linking CXX executable unittests/MIR/MIRTests
7.260 [2/8/739] Linking CXX executable unittests/CodeGen/CodeGenTests
7.324 [2/7/740] Linking CXX executable unittests/MI/MITests
7.359 [2/6/741] Linking CXX executable unittests/Transforms/Scalar/ScalarTests
7.419 [2/5/742] Linking CXX executable unittests/tools/llvm-mca/LLVMMCATests
7.501 [2/4/743] Linking CXX executable unittests/DebugInfo/LogicalView/DebugInfoLogicalViewTests
8.153 [2/3/744] Linking CXX executable unittests/Target/TargetMachineCTests
8.304 [2/2/745] Linking CXX executable unittests/tools/llvm-exegesis/LLVMExegesisTests
10.573 [2/1/746] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
ccache /usr/bin/c++ -DCPUINFO_SUPPORTED_PLATFORM=1 -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/b/ml-opt-dev-x86-64-b1/build/unittests/CodeGen/GlobalISel -I/b/ml-opt-dev-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel -I/b/ml-opt-dev-x86-64-b1/build/include -I/b/ml-opt-dev-x86-64-b1/llvm-project/llvm/include -I/b/ml-opt-dev-x86-64-b1/llvm-project/third-party/unittest/googletest/include -I/b/ml-opt-dev-x86-64-b1/llvm-project/third-party/unittest/googlemock/include -isystem /tmp/tflitebuild/tensorflow/include -isystem /tmp/tflitebuild/eigen/include/eigen3 -isystem /tmp/tflitebuild/abseil-cpp/include -isystem /tmp/tflitebuild/flatbuffers/include -isystem /tmp/tflitebuild/gemmlowp/include/gemmlowp -isystem /tmp/tflitebuild/ml_dtypes/src/ml_dtypes -isystem /tmp/tflitebuild/ml_dtypes/src/ml_dtypes/ml_dtypes -isystem /tmp/tflitebuild/ruy/include -isystem /tmp/tflitebuild/cpuinfo/include -isystem /tmp/tflitebuild/ARM_NEON_2_x86_SSE/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -fno-lifetime-dse -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-uninitialized -Wno-nonnull -Wno-class-memaccess -Wno-redundant-move -Wno-pessimizing-move -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -Wno-misleading-indentation -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG  -Wno-dangling-else -Wno-variadic-macros -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -DEIGEN_NEON_GEBP_NR=4 -DTFL_STATIC_LIBRARY_BUILD -Wno-suggest-override -std=c++17 -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /b/ml-opt-dev-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/b/ml-opt-dev-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp: In member function ‘virtual void {anonymous}::AArch64GISelMITest_TestCSE_Test::TestBody()’:
/b/ml-opt-dev-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/b/ml-opt-dev-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/b/ml-opt-dev-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/b/ml-opt-dev-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/b/ml-opt-dev-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/b/ml-opt-dev-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/b/ml-opt-dev-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/b/ml-opt-dev-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:126:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  126 |     MIBFDiv2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/b/ml-opt-dev-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:136:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  136 |     MIBFAbs2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/b/ml-opt-dev-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:139:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  139 |     MIBFAbs2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/b/ml-opt-dev-x86-64-b1/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:149:17: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 2025

LLVM Buildbot has detected a new failure on builder llvm-nvptx-nvidia-win running on as-builder-8 while building llvm at step 7 "test-build-unified-tree-check-llvm".

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

Here is the relevant piece of the build log for the reference
Step 7 (test-build-unified-tree-check-llvm) failure: test (failure)
...
[736/761] Building CXX object unittests\tools\llvm-exegesis\CMakeFiles\LLVMExegesisTests.dir\BenchmarkRunnerTest.cpp.obj
[737/761] Building CXX object unittests\tools\llvm-profgen\CMakeFiles\LLVMProfgenTests.dir\ContextCompressionTest.cpp.obj
[738/761] Building CXX object unittests\tools\llvm-exegesis\CMakeFiles\LLVMExegesisTests.dir\X86\BenchmarkResultTest.cpp.obj
[739/761] Linking CXX executable unittests\XRay\XRayTests.exe
[740/761] Building CXX object unittests\tools\llvm-exegesis\CMakeFiles\LLVMExegesisTests.dir\X86\SnippetRepetitorTest.cpp.obj
[741/761] Building CXX object unittests\tools\llvm-exegesis\CMakeFiles\LLVMExegesisTests.dir\X86\SnippetGeneratorTest.cpp.obj
[742/761] Building CXX object unittests\tools\llvm-exegesis\CMakeFiles\LLVMExegesisTests.dir\X86\TargetTest.cpp.obj
[743/761] Building CXX object unittests\tools\llvm-exegesis\CMakeFiles\LLVMExegesisTests.dir\X86\SnippetFileTest.cpp.obj
[744/761] Linking CXX executable unittests\tools\llvm-profgen\LLVMProfgenTests.exe
[745/761] Building CXX object unittests\CodeGen\GlobalISel\CMakeFiles\GlobalISelTests.dir\CSETest.cpp.obj
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.obj 
C:\ninja\ccache.exe C:\PROGRA~1\MICROS~2\2022\COMMUN~1\VC\Tools\MSVC\1442~1.344\bin\Hostx64\x64\cl.exe  /nologo /TP -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -DUNICODE -D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS -D_GLIBCXX_ASSERTIONS -D_HAS_EXCEPTIONS=0 -D_SCL_SECURE_NO_DEPRECATE -D_SCL_SECURE_NO_WARNINGS -D_UNICODE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -IC:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\build\unittests\CodeGen\GlobalISel -IC:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel -IC:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\build\include -IC:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include -IC:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\third-party\unittest\googletest\include -IC:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\third-party\unittest\googlemock\include /DWIN32 /D_WINDOWS   /Zc:inline /Zc:preprocessor /Zc:__cplusplus /Oi /bigobj /permissive- /W4 -wd4141 -wd4146 -wd4244 -wd4267 -wd4291 -wd4351 -wd4456 -wd4457 -wd4458 -wd4459 -wd4503 -wd4624 -wd4722 -wd4100 -wd4127 -wd4512 -wd4505 -wd4610 -wd4510 -wd4702 -wd4245 -wd4706 -wd4310 -wd4701 -wd4703 -wd4389 -wd4611 -wd4805 -wd4204 -wd4577 -wd4091 -wd4592 -wd4319 -wd4709 -wd5105 -wd4324 -wd4251 -wd4275 -w14062 -we4238 /Gw /O2 /Ob2  -MD  /EHs-c- /GR- -UNDEBUG -std:c++17 /showIncludes /Founittests\CodeGen\GlobalISel\CMakeFiles\GlobalISelTests.dir\CSETest.cpp.obj /Fdunittests\CodeGen\GlobalISel\CMakeFiles\GlobalISelTests.dir\ /FS -c C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(84): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(87): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(97): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(100): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(110): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(113): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(123): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(126): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(136): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(139): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(149): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(152): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(161): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(164): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(174): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(177): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(186): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(189): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
[746/761] Linking CXX executable unittests\tools\llvm-profdata\LLVMProfdataTests.exe

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 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/10669

Here is the relevant piece of the build log for the reference
Step 5 (ninja check 1) failure: stage 1 checked (failure)
...
[53/84] Linking CXX executable unittests/Passes/Plugins/PluginsTests
[54/84] Linking CXX executable tools/clang/tools/extra/unittests/clang-move/ClangMoveTests
[55/84] Linking CXX executable tools/clang/tools/extra/unittests/clang-change-namespace/ClangChangeNamespaceTests
[56/84] Linking CXX executable tools/clang/unittests/Support/ClangSupportTests
[57/84] Linking CXX executable tools/clang/unittests/AST/ByteCode/InterpTests
[58/84] Linking CXX executable tools/clang/tools/extra/include-cleaner/unittests/ClangIncludeCleanerTests
[59/84] Linking CXX executable tools/clang/unittests/Index/IndexTests
[60/84] Linking CXX executable tools/clang/unittests/CrossTU/CrossTUTests
[61/84] Linking CXX executable tools/clang/unittests/Analysis/ClangAnalysisTests
[62/84] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
/usr/local/bin/c++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_FILE_OFFSET_BITS=64 -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/home/tcwg-buildbot/worker/clang-armv8-quick/stage1/unittests/CodeGen/GlobalISel -I/home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/unittests/CodeGen/GlobalISel -I/home/tcwg-buildbot/worker/clang-armv8-quick/stage1/include -I/home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/include -I/home/tcwg-buildbot/worker/clang-armv8-quick/llvm/third-party/unittest/googletest/include -I/home/tcwg-buildbot/worker/clang-armv8-quick/llvm/third-party/unittest/googlemock/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wmissing-field-initializers -pedantic -Wno-long-long -Wc++98-compat-extra-semi -Wimplicit-fallthrough -Wcovered-switch-default -Wno-noexcept-type -Wnon-virtual-dtor -Wdelete-non-virtual-dtor -Wsuggest-override -Wstring-conversion -Wmisleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG -std=c++17  -Wno-variadic-macros -Wno-gnu-zero-variadic-macro-arguments -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /home/tcwg-buildbot/worker/clang-armv8-quick/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
../llvm/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |             ^
      |             ->
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
../llvm/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |             ^
      |             ->
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
../llvm/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |             ^
      |             ->
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 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/8427

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
...
36.970 [2/15/1190] Linking CXX executable unittests/tools/llvm-profgen/LLVMProfgenTests
37.069 [2/14/1191] Linking CXX executable unittests/Transforms/Vectorize/SandboxVectorizer/SandboxVectorizerTests
37.106 [2/13/1192] Linking CXX executable unittests/Transforms/Vectorize/VectorizeTests
37.156 [2/12/1193] Linking CXX executable unittests/tools/llvm-profdata/LLVMProfdataTests
37.334 [2/11/1194] Linking CXX executable unittests/Transforms/IPO/IPOTests
37.686 [2/10/1195] Linking CXX executable unittests/Target/X86/X86Tests
37.741 [2/9/1196] Linking CXX executable unittests/Transforms/Instrumentation/InstrumentationTests
37.777 [2/8/1197] Linking CXX executable unittests/tools/llvm-cfi-verify/CFIVerifyTests
37.860 [2/7/1198] Linking CXX executable unittests/Transforms/Coroutines/CoroTests
38.079 [2/6/1199] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
ccache /usr/bin/clang++-17 -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/unittests/CodeGen/GlobalISel -I/vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/unittests/CodeGen/GlobalISel -I/vol/worker/clang-debian-cpp20/clang-debian-cpp20/build/include -I/vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/include -I/vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/third-party/unittest/googletest/include -I/vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/third-party/unittest/googlemock/include -Wno-deprecated-enum-enum-conversion -Wno-deprecated-declarations -Wno-deprecated-anon-enum-enum-conversion -Wno-ambiguous-reversed-operator -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wmissing-field-initializers -pedantic -Wno-long-long -Wc++98-compat-extra-semi -Wimplicit-fallthrough -Wcovered-switch-default -Wno-noexcept-type -Wnon-virtual-dtor -Wdelete-non-virtual-dtor -Wsuggest-override -Wstring-conversion -Wmisleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG -std=c++20  -Wno-variadic-macros -Wno-gnu-zero-variadic-macro-arguments -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |             ^
      |             ->
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |             ^
      |             ->
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |             ^
      |             ->
/vol/worker/clang-debian-cpp20/clang-debian-cpp20/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 2025

LLVM Buildbot has detected a new failure on builder clang-x86_64-linux-abi-test running on sie-linux-worker2 while building llvm at step 6 "build-unified-tree".

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

Here is the relevant piece of the build log for the reference
Step 6 (build-unified-tree) failure: build (failure)
...
In member function ‘void llvm::ContextAndReplaceableUses::makeReplaceable(std::unique_ptr<llvm::ReplaceableMetadataImpl>)’,
    inlined from ‘virtual void {anonymous}::ContextAndReplaceableUsesTest_makeReplaceable_Test::TestBody()’ at /home/buildbot/buildbot-root/abi-test/llvm/llvm/unittests/IR/MetadataTest.cpp:49:22:
/home/buildbot/buildbot-root/abi-test/llvm/llvm/include/llvm/IR/Metadata.h:1025:31: warning: ‘void operator delete(void*, std::size_t)’ called on unallocated object ‘Context’ [-Wfree-nonheap-object]
 1025 |     delete getReplaceableUses();
      |                               ^
/home/buildbot/buildbot-root/abi-test/llvm/llvm/unittests/IR/MetadataTest.cpp: In member function ‘virtual void {anonymous}::ContextAndReplaceableUsesTest_makeReplaceable_Test::TestBody()’:
/home/buildbot/buildbot-root/abi-test/llvm/llvm/unittests/IR/MetadataTest.cpp:47:15: note: declared here
   47 |   LLVMContext Context;
      |               ^~~~~~~
249.599 [377/10/6691] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
/opt/ccache/bin/g++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/home/buildbot/buildbot-root/abi-test/build/unittests/CodeGen/GlobalISel -I/home/buildbot/buildbot-root/abi-test/llvm/llvm/unittests/CodeGen/GlobalISel -I/home/buildbot/buildbot-root/abi-test/build/include -I/home/buildbot/buildbot-root/abi-test/llvm/llvm/include -I/home/buildbot/buildbot-root/abi-test/llvm/third-party/unittest/googletest/include -I/home/buildbot/buildbot-root/abi-test/llvm/third-party/unittest/googlemock/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -fno-lifetime-dse -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-uninitialized -Wno-nonnull -Wno-class-memaccess -Wno-redundant-move -Wno-pessimizing-move -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -Wno-misleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG  -Wno-dangling-else -Wno-variadic-macros -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -std=c++17 -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /home/buildbot/buildbot-root/abi-test/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/home/buildbot/buildbot-root/abi-test/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp: In member function ‘virtual void {anonymous}::AArch64GISelMITest_TestCSE_Test::TestBody()’:
/home/buildbot/buildbot-root/abi-test/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/buildbot-root/abi-test/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/home/buildbot/buildbot-root/abi-test/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/buildbot-root/abi-test/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/home/buildbot/buildbot-root/abi-test/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/buildbot-root/abi-test/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/home/buildbot/buildbot-root/abi-test/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/buildbot-root/abi-test/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:126:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  126 |     MIBFDiv2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/home/buildbot/buildbot-root/abi-test/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:136:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  136 |     MIBFAbs2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/buildbot-root/abi-test/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:139:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  139 |     MIBFAbs2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/home/buildbot/buildbot-root/abi-test/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:149:17: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 2025

LLVM Buildbot has detected a new failure on builder llvm-nvptx64-nvidia-ubuntu running on as-builder-7 while building llvm at step 6 "test-build-unified-tree-check-llvm".

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

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-llvm) failure: test (failure)
...
0.924 [2/10/688] Linking CXX executable unittests/ExecutionEngine/Orc/OrcJITTests
0.927 [2/9/689] Linking CXX executable unittests/Transforms/Utils/UtilsTests
0.965 [2/8/690] Linking CXX executable unittests/tools/llvm-exegesis/LLVMExegesisTests
0.995 [2/7/691] Linking CXX executable unittests/CodeGen/CodeGenTests
1.008 [2/6/692] Linking CXX executable unittests/Frontend/LLVMFrontendTests
1.072 [2/5/693] Linking CXX executable unittests/Analysis/AnalysisTests
1.161 [2/4/694] Linking CXX executable unittests/IR/IRTests
1.272 [2/3/695] Linking CXX executable unittests/ADT/ADTTests
1.310 [2/2/696] Linking CXX executable unittests/Support/SupportTests
7.809 [2/1/697] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
CCACHE_CPP2=yes CCACHE_HASHDIR=yes /usr/bin/ccache /usr/bin/c++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/unittests/CodeGen/GlobalISel -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/build/include -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/include -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/third-party/unittest/googletest/include -I/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/third-party/unittest/googlemock/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -fno-lifetime-dse -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-uninitialized -Wno-nonnull -Wno-class-memaccess -Wno-redundant-move -Wno-pessimizing-move -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -Wno-misleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG  -Wno-dangling-else -Wno-variadic-macros -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -std=c++17 -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp: In member function ‘virtual void {anonymous}::AArch64GISelMITest_TestCSE_Test::TestBody()’:
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:126:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  126 |     MIBFDiv2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:136:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  136 |     MIBFAbs2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:139:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  139 |     MIBFAbs2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/home/buildbot/worker/as-builder-7/ramdisk/llvm-nvptx64-nvidia-ubuntu/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:149:17: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 2025

LLVM Buildbot has detected a new failure on builder llvm-nvptx64-nvidia-win running on as-builder-8 while building llvm at step 7 "test-build-unified-tree-check-llvm".

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

Here is the relevant piece of the build log for the reference
Step 7 (test-build-unified-tree-check-llvm) failure: test (failure)
...
[741/761] Building CXX object unittests\tools\llvm-exegesis\CMakeFiles\LLVMExegesisTests.dir\X86\TargetTest.cpp.obj
[742/761] Linking CXX executable unittests\XRay\XRayTests.exe
[743/761] Building CXX object unittests\tools\llvm-exegesis\CMakeFiles\LLVMExegesisTests.dir\X86\SnippetFileTest.cpp.obj
[744/761] Linking CXX executable unittests\tools\llvm-profgen\LLVMProfgenTests.exe
[745/761] Linking CXX executable unittests\tools\llvm-profdata\LLVMProfdataTests.exe
[746/761] Linking CXX executable unittests\Support\SupportTests.exe
[747/761] Linking CXX executable unittests\Target\TargetMachineCTests.exe
[748/761] Linking CXX executable unittests\Transforms\Vectorize\SandboxVectorizer\SandboxVectorizerTests.exe
[749/761] Linking CXX executable unittests\Transforms\Vectorize\VectorizeTests.exe
[750/761] Building CXX object unittests\CodeGen\GlobalISel\CMakeFiles\GlobalISelTests.dir\CSETest.cpp.obj
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.obj 
C:\ninja\ccache.exe C:\PROGRA~1\MICROS~2\2022\COMMUN~1\VC\Tools\MSVC\1442~1.344\bin\Hostx64\x64\cl.exe  /nologo /TP -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -DUNICODE -D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS -D_GLIBCXX_ASSERTIONS -D_HAS_EXCEPTIONS=0 -D_SCL_SECURE_NO_DEPRECATE -D_SCL_SECURE_NO_WARNINGS -D_UNICODE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -IC:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\unittests\CodeGen\GlobalISel -IC:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel -IC:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\build\include -IC:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include -IC:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\third-party\unittest\googletest\include -IC:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\third-party\unittest\googlemock\include /DWIN32 /D_WINDOWS   /Zc:inline /Zc:preprocessor /Zc:__cplusplus /Oi /bigobj /permissive- /W4 -wd4141 -wd4146 -wd4244 -wd4267 -wd4291 -wd4351 -wd4456 -wd4457 -wd4458 -wd4459 -wd4503 -wd4624 -wd4722 -wd4100 -wd4127 -wd4512 -wd4505 -wd4610 -wd4510 -wd4702 -wd4245 -wd4706 -wd4310 -wd4701 -wd4703 -wd4389 -wd4611 -wd4805 -wd4204 -wd4577 -wd4091 -wd4592 -wd4319 -wd4709 -wd5105 -wd4324 -wd4251 -wd4275 -w14062 -we4238 /Gw /O2 /Ob2  -MD  /EHs-c- /GR- -UNDEBUG -std:c++17 /showIncludes /Founittests\CodeGen\GlobalISel\CMakeFiles\GlobalISelTests.dir\CSETest.cpp.obj /Fdunittests\CodeGen\GlobalISel\CMakeFiles\GlobalISelTests.dir\ /FS -c C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(84): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(87): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(97): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(100): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(110): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(113): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(123): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(126): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(136): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(139): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(149): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(152): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(161): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(164): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(174): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(177): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(186): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(189): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-8\llvm-nvptx64-nvidia-win\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
[751/761] Linking CXX executable unittests\Transforms\IPO\IPOTests.exe

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 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/10111

Here is the relevant piece of the build log for the reference
Step 7 (ninja check 1) failure: stage 1 checked (failure)
...
[74/91] Linking CXX executable unittests/Analysis/AnalysisTests
[75/91] Linking CXX executable tools/clang/unittests/Analysis/FlowSensitive/ClangAnalysisFlowSensitiveTests
[76/91] Linking CXX executable tools/clang/unittests/CrossTU/CrossTUTests
[77/91] Linking CXX executable tools/clang/unittests/Tooling/Syntax/SyntaxTests
[78/91] Linking CXX executable tools/clang/unittests/StaticAnalyzer/StaticAnalysisTests
[79/91] Linking CXX executable unittests/CodeGen/CodeGenTests
[80/91] Linking CXX executable tools/clang/unittests/Index/IndexTests
[81/91] Linking CXX executable tools/clang/unittests/Analysis/ClangAnalysisTests
[82/91] Linking CXX executable tools/clang/unittests/AST/ASTTests
[83/91] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
/usr/bin/c++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/unittests/CodeGen/GlobalISel -I/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/unittests/CodeGen/GlobalISel -I/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/stage1/include -I/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/include -I/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/third-party/unittest/googletest/include -I/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/third-party/unittest/googlemock/include -march=cascadelake -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -fno-lifetime-dse -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-uninitialized -Wno-nonnull -Wno-class-memaccess -Wno-redundant-move -Wno-pessimizing-move -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -Wno-misleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG -std=c++17  -Wno-dangling-else -Wno-variadic-macros -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp: In member function ‘virtual void {anonymous}::AArch64GISelMITest_TestCSE_Test::TestBody()’:
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:126:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  126 |     MIBFDiv2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:136:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  136 |     MIBFAbs2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:139:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  139 |     MIBFAbs2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/localdisk2/buildbot/llvm-worker/clang-cmake-x86_64-avx512-linux/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:149:17: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 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/10031

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
...
7.637 [2/18/733] Linking CXX executable unittests/Passes/Plugins/PluginsTests
7.685 [2/17/734] Linking CXX executable unittests/IR/IRTests
7.863 [2/16/735] Linking CXX executable unittests/MC/AMDGPU/AMDGPUMCTests
7.867 [2/15/736] Linking CXX executable unittests/Target/X86/X86Tests
8.067 [2/14/737] Linking CXX executable unittests/Transforms/Scalar/ScalarTests
8.271 [2/13/738] Linking CXX executable unittests/Target/AMDGPU/AMDGPUTests
8.406 [2/12/739] Linking CXX executable unittests/Analysis/AnalysisTests
8.542 [2/11/740] Linking CXX executable unittests/ExecutionEngine/MCJIT/MCJITTests
8.583 [2/10/741] Linking CXX executable unittests/tools/llvm-exegesis/LLVMExegesisTests
9.083 [2/9/742] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
CCACHE_CPP2=yes CCACHE_HASHDIR=yes /usr/bin/ccache /usr/bin/c++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/unittests/CodeGen/GlobalISel -I/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/unittests/CodeGen/GlobalISel -I/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/build/include -I/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/include -I/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/third-party/unittest/googletest/include -I/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/third-party/unittest/googlemock/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -fno-lifetime-dse -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-uninitialized -Wno-nonnull -Wno-class-memaccess -Wno-redundant-move -Wno-pessimizing-move -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -Wno-misleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG  -Wno-dangling-else -Wno-variadic-macros -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -std=c++17 -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp: In member function ‘virtual void {anonymous}::AArch64GISelMITest_TestCSE_Test::TestBody()’:
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:126:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  126 |     MIBFDiv2.clearFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~~~
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:136:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
  136 |     MIBFAbs2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:139:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
  139 |     MIBFAbs2.clearFlag(MachineInstr::FmNsz);
      |              ^~~~~~~~~
/home/buildbot/worker/as-builder-4/ramdisk/lld-x86_64/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:149:17: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 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/8693

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
...
8.859 [2/64/47] Linking CXX executable unittests/FuzzMutate/FuzzMutateTests
8.978 [2/63/48] Linking CXX executable unittests/Target/VE/VETests
9.119 [2/62/49] Linking CXX executable unittests/MC/MCTests
9.875 [2/61/50] Linking CXX executable unittests/Transforms/IPO/IPOTests
11.017 [2/60/51] Linking CXX executable tools/clang/unittests/Lex/LexTests
11.178 [2/59/52] Linking CXX executable unittests/Transforms/Utils/UtilsTests
11.530 [2/58/53] Linking CXX executable unittests/tools/llvm-cfi-verify/CFIVerifyTests
11.557 [2/57/54] Linking CXX executable tools/clang/unittests/Tooling/Syntax/SyntaxTests
11.743 [2/56/55] Linking CXX executable tools/clang/unittests/Index/IndexTests
12.495 [2/55/56] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
ccache /usr/lib64/ccache/c++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/unittests/CodeGen/GlobalISel -I/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/unittests/CodeGen/GlobalISel -I/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/build/include -I/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/include -I/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/third-party/unittest/googletest/include -I/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/third-party/unittest/googlemock/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -fno-lifetime-dse -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-uninitialized -Wno-nonnull -Wno-class-memaccess -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wno-comment -Wno-misleading-indentation -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG -std=c++17  -Wno-dangling-else -Wno-variadic-macros -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp: In member function ‘virtual void {anonymous}::AArch64GISelMITest_TestCSE_Test::TestBody()’:
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
     MIBFAdd2.setFlag(MachineInstr::FmNsz);
              ^~~~~~~
              setMIFlag
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
              ^~~~~~~~~
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
     MIBFSub2.setFlag(MachineInstr::FmNoNans);
              ^~~~~~~
              setMIFlag
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
              ^~~~~~~~~
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
     MIBFMul2.setFlag(MachineInstr::FmNoNans);
              ^~~~~~~
              setMIFlag
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
              ^~~~~~~~~
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
              ^~~~~~~
              setMIFlag
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:126:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
     MIBFDiv2.clearFlag(MachineInstr::FmNoNans);
              ^~~~~~~~~
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:136:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
     MIBFAbs2.setFlag(MachineInstr::FmNsz);
              ^~~~~~~
              setMIFlag
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:139:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
     MIBFAbs2.clearFlag(MachineInstr::FmNsz);
              ^~~~~~~~~
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-test-suite/clang-ppc64le-test-suite/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:149:17: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 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/11429

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)
...
clang++: warning: optimization flag '-ffat-lto-objects' is not supported [-Wignored-optimization-argument]
[847/1371] Building CXX object unittests/CodeGen/CMakeFiles/CodeGenTests.dir/TestAsmPrinter.cpp.o
clang++: warning: optimization flag '-ffat-lto-objects' is not supported [-Wignored-optimization-argument]
[848/1371] Building CXX object unittests/CodeGen/CMakeFiles/CodeGenTests.dir/MachineBasicBlockTest.cpp.o
clang++: warning: optimization flag '-ffat-lto-objects' is not supported [-Wignored-optimization-argument]
[849/1371] Building CXX object unittests/CodeGen/CMakeFiles/CodeGenTests.dir/MachineOperandTest.cpp.o
clang++: warning: optimization flag '-ffat-lto-objects' is not supported [-Wignored-optimization-argument]
[850/1371] Building CXX object unittests/CodeGen/CMakeFiles/CodeGenTests.dir/DIETest.cpp.o
clang++: warning: optimization flag '-ffat-lto-objects' is not supported [-Wignored-optimization-argument]
[851/1371] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
CCACHE_CPP2=yes CCACHE_HASHDIR=yes /usr/bin/ccache /usr/bin/clang++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-pmxck88t/unittests/CodeGen/GlobalISel -I/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel -I/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-pmxck88t/include -I/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/include -I/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/third-party/unittest/googletest/include -I/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/third-party/unittest/googlemock/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wmissing-field-initializers -pedantic -Wno-long-long -Wc++98-compat-extra-semi -Wimplicit-fallthrough -Wcovered-switch-default -Wno-noexcept-type -Wnon-virtual-dtor -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -Wstring-conversion -Wmisleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -ffat-lto-objects -no-canonical-prefixes -O3 -DNDEBUG -std=c++17 -fvisibility=default  -Wno-variadic-macros -Wno-gnu-zero-variadic-macro-arguments -fno-exceptions -fno-unwind-tables -fno-asynchronous-unwind-tables -fno-rtti -Wno-suggest-override -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
clang++: warning: optimization flag '-ffat-lto-objects' is not supported [-Wignored-optimization-argument]
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |             ^
      |             ->
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |             ^
      |             ->
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |             ^
      |             ->
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
Step 7 (check) failure: check (failure)
...
clang++: warning: optimization flag '-ffat-lto-objects' is not supported [-Wignored-optimization-argument]
[847/1371] Building CXX object unittests/CodeGen/CMakeFiles/CodeGenTests.dir/TestAsmPrinter.cpp.o
clang++: warning: optimization flag '-ffat-lto-objects' is not supported [-Wignored-optimization-argument]
[848/1371] Building CXX object unittests/CodeGen/CMakeFiles/CodeGenTests.dir/MachineBasicBlockTest.cpp.o
clang++: warning: optimization flag '-ffat-lto-objects' is not supported [-Wignored-optimization-argument]
[849/1371] Building CXX object unittests/CodeGen/CMakeFiles/CodeGenTests.dir/MachineOperandTest.cpp.o
clang++: warning: optimization flag '-ffat-lto-objects' is not supported [-Wignored-optimization-argument]
[850/1371] Building CXX object unittests/CodeGen/CMakeFiles/CodeGenTests.dir/DIETest.cpp.o
clang++: warning: optimization flag '-ffat-lto-objects' is not supported [-Wignored-optimization-argument]
[851/1371] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
CCACHE_CPP2=yes CCACHE_HASHDIR=yes /usr/bin/ccache /usr/bin/clang++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-pmxck88t/unittests/CodeGen/GlobalISel -I/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel -I/var/lib/buildbot/fuchsia-x86_64-linux/build/llvm-build-pmxck88t/include -I/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/include -I/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/third-party/unittest/googletest/include -I/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/third-party/unittest/googlemock/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wmissing-field-initializers -pedantic -Wno-long-long -Wc++98-compat-extra-semi -Wimplicit-fallthrough -Wcovered-switch-default -Wno-noexcept-type -Wnon-virtual-dtor -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -Wstring-conversion -Wmisleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -ffat-lto-objects -no-canonical-prefixes -O3 -DNDEBUG -std=c++17 -fvisibility=default  -Wno-variadic-macros -Wno-gnu-zero-variadic-macro-arguments -fno-exceptions -fno-unwind-tables -fno-asynchronous-unwind-tables -fno-rtti -Wno-suggest-override -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
clang++: warning: optimization flag '-ffat-lto-objects' is not supported [-Wignored-optimization-argument]
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |             ^
      |             ->
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |             ^
      |             ->
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |             ^
      |             ->
/var/lib/buildbot/fuchsia-x86_64-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 2025

LLVM Buildbot has detected a new failure on builder clang-ppc64le-linux-multistage running on ppc64le-clang-multistage-test while building llvm at step 5 "ninja check 1".

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

Here is the relevant piece of the build log for the reference
Step 5 (ninja check 1) failure: stage 1 checked (failure)
...
2 warning(s) in tests

Testing Time: 96.61s

Total Discovered Tests: 4316
  Skipped          :    9 (0.21%)
  Unsupported      : 1174 (27.20%)
  Passed           : 3091 (71.62%)
  Expectedly Failed:   42 (0.97%)
[112/115] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
ccache /usr/lib64/ccache/c++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage1/unittests/CodeGen/GlobalISel -I/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel -I/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage1/include -I/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/include -I/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/third-party/unittest/googletest/include -I/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/third-party/unittest/googlemock/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -fno-lifetime-dse -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-uninitialized -Wno-nonnull -Wno-class-memaccess -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wno-comment -Wno-misleading-indentation -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG -std=c++17  -Wno-dangling-else -Wno-variadic-macros -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp: In member function ‘virtual void {anonymous}::AArch64GISelMITest_TestCSE_Test::TestBody()’:
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
     MIBFAdd2.setFlag(MachineInstr::FmNsz);
              ^~~~~~~
              setMIFlag
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
              ^~~~~~~~~
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
     MIBFSub2.setFlag(MachineInstr::FmNoNans);
              ^~~~~~~
              setMIFlag
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
              ^~~~~~~~~
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
     MIBFMul2.setFlag(MachineInstr::FmNoNans);
              ^~~~~~~
              setMIFlag
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
              ^~~~~~~~~
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
              ^~~~~~~
              setMIFlag
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:126:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
     MIBFDiv2.clearFlag(MachineInstr::FmNoNans);
              ^~~~~~~~~
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:136:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
     MIBFAbs2.setFlag(MachineInstr::FmNsz);
              ^~~~~~~
              setMIFlag
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:139:14: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘clearFlag’
     MIBFAbs2.clearFlag(MachineInstr::FmNsz);
              ^~~~~~~~~
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:149:17: error: ‘class llvm::MachineInstrBuilder’ has no member named ‘setFlag’; did you mean ‘setMIFlag’?
Step 11 (ninja check 2) failure: stage 2 checked (failure)
...
[77/85] Generating POWERPC64LELinuxDynamicConfig/Asan-powerpc64le-calls-Dynamic-Test
[78/85] Generating POWERPC64LELinuxConfig/Asan-powerpc64le-calls-Test
[79/85] Generating ASAN_INST_TEST_OBJECTS.gtest-all.cc.powerpc64le-inline.o
[80/85] Generating POWERPC64LELinuxDynamicConfig/Asan-powerpc64le-inline-Dynamic-Test
[81/85] Generating POWERPC64LELinuxConfig/Asan-powerpc64le-inline-Test
[82/85] Generating ASAN_NOINST_TEST_OBJECTS.gtest-all.cc.powerpc64le-inline.o
[83/85] Generating POWERPC64LELinuxConfig/Asan-powerpc64le-inline-Noinst-Test
[84/85] Generating ASAN_NOINST_TEST_OBJECTS.gtest-all.cc.powerpc64le-calls.o
[85/85] Generating POWERPC64LELinuxConfig/Asan-powerpc64le-calls-Noinst-Test
[591/1213] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
ccache /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage1.install/bin/clang++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage2/unittests/CodeGen/GlobalISel -I/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel -I/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/stage2/include -I/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/include -I/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/third-party/unittest/googletest/include -I/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/third-party/unittest/googlemock/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wmissing-field-initializers -pedantic -Wno-long-long -Wc++98-compat-extra-semi -Wimplicit-fallthrough -Wcovered-switch-default -Wno-noexcept-type -Wnon-virtual-dtor -Wdelete-non-virtual-dtor -Wsuggest-override -Wstring-conversion -Wmisleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG -std=c++17  -Wno-variadic-macros -Wno-gnu-zero-variadic-macro-arguments -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |             ^
      |             ->
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |             ^
      |             ->
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |             ^
      |             ->
/home/buildbots/llvm-external-buildbots/workers/ppc64le-clang-multistage-test/clang-ppc64le-multistage/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 2025

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

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

Here is the relevant piece of the build log for the reference
Step 7 (ninja check 1) failure: stage 1 checked (failure)
...
[65/96] Linking CXX executable unittests/DebugInfo/LogicalView/DebugInfoLogicalViewTests
[66/96] Linking CXX executable unittests/Target/LoongArch/LoongArchTests
[67/96] Linking CXX executable unittests/Passes/Plugins/PluginsTests
[68/96] Linking CXX executable unittests/Passes/PassBuilderBindings/PassesBindingsTests
[69/96] Linking CXX executable unittests/Target/AArch64/AArch64Tests
[70/96] Linking CXX executable unittests/Target/ARM/ARMTests
[71/96] Linking CXX executable tools/clang/unittests/Interpreter/ClangReplInterpreterTests
[72/96] Linking CXX executable unittests/Target/PowerPC/PowerPCTests
[73/96] Linking CXX executable unittests/Target/SPIRV/SPIRVTests
[74/96] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
/usr/local/bin/c++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/home/tcwg-buildbot/worker/clang-aarch64-global-isel/stage1/unittests/CodeGen/GlobalISel -I/home/tcwg-buildbot/worker/clang-aarch64-global-isel/llvm/llvm/unittests/CodeGen/GlobalISel -I/home/tcwg-buildbot/worker/clang-aarch64-global-isel/stage1/include -I/home/tcwg-buildbot/worker/clang-aarch64-global-isel/llvm/llvm/include -I/home/tcwg-buildbot/worker/clang-aarch64-global-isel/llvm/third-party/unittest/googletest/include -I/home/tcwg-buildbot/worker/clang-aarch64-global-isel/llvm/third-party/unittest/googlemock/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wmissing-field-initializers -pedantic -Wno-long-long -Wc++98-compat-extra-semi -Wimplicit-fallthrough -Wcovered-switch-default -Wno-noexcept-type -Wnon-virtual-dtor -Wdelete-non-virtual-dtor -Wsuggest-override -Wstring-conversion -Wmisleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG -std=c++17  -Wno-variadic-macros -Wno-gnu-zero-variadic-macro-arguments -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /home/tcwg-buildbot/worker/clang-aarch64-global-isel/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
../llvm/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |             ^
      |             ->
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
../llvm/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |             ^
      |             ->
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
../llvm/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |             ^
      |             ->
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 2025

LLVM Buildbot has detected a new failure on builder llvm-clang-x86_64-darwin running on doug-worker-3 while building llvm at step 5 "build-unified-tree".

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

Here is the relevant piece of the build log for the reference
Step 5 (build-unified-tree) failure: build (failure)
...
221.515 [160/12/5829] Linking CXX executable tools/clang/unittests/StaticAnalyzer/StaticAnalysisTests
221.813 [159/12/5830] Linking CXX executable tools/clang/unittests/ASTMatchers/ASTMatchersTests
222.066 [158/12/5831] Linking CXX executable tools/clang/unittests/ASTMatchers/Dynamic/DynamicASTMatchersTests
222.710 [157/12/5832] Linking CXX executable tools/clang/unittests/AST/ASTTests
222.888 [156/12/5833] Linking CXX executable tools/clang/unittests/AST/ByteCode/InterpTests
223.090 [155/12/5834] Linking CXX executable tools/clang/unittests/CrossTU/CrossTUTests
223.141 [154/12/5835] Linking CXX executable tools/clang/unittests/libclang/libclangTests
223.262 [153/12/5836] Linking CXX executable tools/clang/unittests/libclang/CrashTests/libclangCrashTests
223.445 [152/12/5837] Linking CXX executable tools/clang/unittests/DirectoryWatcher/DirectoryWatcherTests
225.099 [151/12/5838] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
CCACHE_CPP2=yes CCACHE_HASHDIR=yes /usr/local/bin/ccache /usr/bin/clang++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/Users/buildbot/buildbot-root/x86_64-darwin/build/unittests/CodeGen/GlobalISel -I/Users/buildbot/buildbot-root/x86_64-darwin/llvm-project/llvm/unittests/CodeGen/GlobalISel -I/Users/buildbot/buildbot-root/x86_64-darwin/build/include -I/Users/buildbot/buildbot-root/x86_64-darwin/llvm-project/llvm/include -I/Users/buildbot/buildbot-root/x86_64-darwin/llvm-project/third-party/unittest/googletest/include -I/Users/buildbot/buildbot-root/x86_64-darwin/llvm-project/third-party/unittest/googlemock/include -isystem /usr/local/include -fPIC -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wmissing-field-initializers -pedantic -Wno-long-long -Wc++98-compat-extra-semi -Wimplicit-fallthrough -Wcovered-switch-default -Wno-noexcept-type -Wnon-virtual-dtor -Wdelete-non-virtual-dtor -Wsuggest-override -Wstring-conversion -Wmisleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -O3 -DNDEBUG -std=c++17 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk  -Wno-variadic-macros -Wno-gnu-zero-variadic-macro-arguments -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /Users/buildbot/buildbot-root/x86_64-darwin/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/Users/buildbot/buildbot-root/x86_64-darwin/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
    MIBFAdd2.setFlag(MachineInstr::FmNsz);
             ^~~~~~~
             setMIFlag
/Users/buildbot/buildbot-root/x86_64-darwin/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
                             ^
/Users/buildbot/buildbot-root/x86_64-darwin/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
    MIBFAdd2.clearFlag(MachineInstr::FmNsz);
            ^
            ->
/Users/buildbot/buildbot-root/x86_64-darwin/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
    MIBFSub2.setFlag(MachineInstr::FmNoNans);
             ^~~~~~~
             setMIFlag
/Users/buildbot/buildbot-root/x86_64-darwin/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
                             ^
/Users/buildbot/buildbot-root/x86_64-darwin/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
    MIBFSub2.clearFlag(MachineInstr::FmNoNans);
            ^
            ->
/Users/buildbot/buildbot-root/x86_64-darwin/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
    MIBFMul2.setFlag(MachineInstr::FmNoNans);
             ^~~~~~~
             setMIFlag
/Users/buildbot/buildbot-root/x86_64-darwin/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
                             ^
/Users/buildbot/buildbot-root/x86_64-darwin/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
    MIBFMul2.clearFlag(MachineInstr::FmNoNans);
            ^
            ->
/Users/buildbot/buildbot-root/x86_64-darwin/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
    MIBFDiv2.setFlag(MachineInstr::FmNoNans);
             ^~~~~~~
             setMIFlag

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 2025

LLVM Buildbot has detected a new failure on builder clang-armv7-global-isel running on linaro-clang-armv7-global-isel while building llvm at step 7 "ninja check 1".

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

Here is the relevant piece of the build log for the reference
Step 7 (ninja check 1) failure: stage 1 checked (failure)
...
[44/97] Linking CXX executable unittests/InterfaceStub/InterfaceStubTests
[45/97] Linking CXX executable unittests/FuzzMutate/FuzzMutateTests
[46/97] Linking CXX executable unittests/MC/SystemZ/SystemZAsmLexerTests
[47/97] Linking CXX executable unittests/Linker/LinkerTests
[48/97] Linking CXX executable unittests/Frontend/LLVMFrontendTests
[49/97] Linking CXX executable unittests/ExecutionEngine/Orc/OrcJITTests
[50/97] Linking CXX executable unittests/MC/MCTests
[51/97] Linking CXX executable unittests/ObjCopy/ObjCopyTests
[52/97] Linking CXX executable unittests/IR/IRTests
[53/97] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
/usr/local/bin/c++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_FILE_OFFSET_BITS=64 -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/home/tcwg-buildbot/worker/clang-armv7-global-isel/stage1/unittests/CodeGen/GlobalISel -I/home/tcwg-buildbot/worker/clang-armv7-global-isel/llvm/llvm/unittests/CodeGen/GlobalISel -I/home/tcwg-buildbot/worker/clang-armv7-global-isel/stage1/include -I/home/tcwg-buildbot/worker/clang-armv7-global-isel/llvm/llvm/include -I/home/tcwg-buildbot/worker/clang-armv7-global-isel/llvm/third-party/unittest/googletest/include -I/home/tcwg-buildbot/worker/clang-armv7-global-isel/llvm/third-party/unittest/googlemock/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wmissing-field-initializers -pedantic -Wno-long-long -Wc++98-compat-extra-semi -Wimplicit-fallthrough -Wcovered-switch-default -Wno-noexcept-type -Wnon-virtual-dtor -Wdelete-non-virtual-dtor -Wsuggest-override -Wstring-conversion -Wmisleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG -std=c++17  -Wno-variadic-macros -Wno-gnu-zero-variadic-macro-arguments -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /home/tcwg-buildbot/worker/clang-armv7-global-isel/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
../llvm/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |             ^
      |             ->
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
../llvm/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |             ^
      |             ->
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
../llvm/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |             ^
      |             ->
../llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 2025

LLVM Buildbot has detected a new failure on builder llvm-clang-win-x-aarch64 running on as-builder-2 while building llvm at step 9 "test-check-llvm".

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

Here is the relevant piece of the build log for the reference
Step 9 (test-check-llvm) failure: Test just built components: check-llvm completed (failure)
...
6.645 [2/10/736]Linking CXX executable unittests\ExecutionEngine\Orc\OrcJITTests.exe
6.669 [2/9/737]Linking CXX executable unittests\IR\IRTests.exe
6.766 [2/8/738]Linking CXX executable unittests\Passes\PassBuilderBindings\PassesBindingsTests.exe
7.027 [2/7/739]Linking CXX executable unittests\Transforms\Instrumentation\InstrumentationTests.exe
7.262 [2/6/740]Linking CXX executable unittests\Target\AArch64\AArch64Tests.exe
7.423 [2/5/741]Linking CXX executable unittests\Transforms\Utils\UtilsTests.exe
7.810 [2/4/742]Linking CXX executable unittests\Transforms\Scalar\ScalarTests.exe
7.827 [2/3/743]Linking CXX executable unittests\tools\llvm-exegesis\LLVMExegesisTests.exe
7.846 [2/2/744]Linking CXX executable unittests\ExecutionEngine\MCJIT\MCJITTests.exe
8.034 [2/1/745]Building CXX object unittests\CodeGen\GlobalISel\CMakeFiles\GlobalISelTests.dir\CSETest.cpp.obj
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.obj 
ccache C:\PROGRA~1\MICROS~2\2022\COMMUN~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe  /nologo /TP -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -DUNICODE -D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS -D_GLIBCXX_ASSERTIONS -D_HAS_EXCEPTIONS=0 -D_SCL_SECURE_NO_DEPRECATE -D_SCL_SECURE_NO_WARNINGS -D_UNICODE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -IC:\buildbot\as-builder-2\x-aarch64\build\unittests\CodeGen\GlobalISel -IC:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel -IC:\buildbot\as-builder-2\x-aarch64\build\include -IC:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include -IC:\buildbot\as-builder-2\x-aarch64\llvm-project\third-party\unittest\googletest\include -IC:\buildbot\as-builder-2\x-aarch64\llvm-project\third-party\unittest\googlemock\include -external:IC:\buildbot\fs\zlib-win32\include -external:W0 -D__OPTIMIZE__ /Zc:inline /Zc:preprocessor /Zc:__cplusplus /Oi /bigobj /permissive- /W4 -wd4141 -wd4146 -wd4244 -wd4267 -wd4291 -wd4351 -wd4456 -wd4457 -wd4458 -wd4459 -wd4503 -wd4624 -wd4722 -wd4100 -wd4127 -wd4512 -wd4505 -wd4610 -wd4510 -wd4702 -wd4245 -wd4706 -wd4310 -wd4701 -wd4703 -wd4389 -wd4611 -wd4805 -wd4204 -wd4577 -wd4091 -wd4592 -wd4319 -wd4709 -wd5105 -wd4324 -wd4251 -wd4275 -w14062 -we4238 /Gw /O2 /Ob2  -MD  /EHs-c- /GR- -UNDEBUG -std:c++17 /showIncludes /Founittests\CodeGen\GlobalISel\CMakeFiles\GlobalISelTests.dir\CSETest.cpp.obj /Fdunittests\CodeGen\GlobalISel\CMakeFiles\GlobalISelTests.dir\ /FS -c C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(84): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(87): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(97): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(100): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(110): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(113): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(123): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(126): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(136): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(139): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(149): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(152): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(161): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(164): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(174): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(177): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(186): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(189): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-2\x-aarch64\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
ninja: build stopped: subcommand failed.

@jplehr
Copy link
Contributor

jplehr commented Jan 22, 2025

Hi, anybody looking at this error already?

@hanhanW
Copy link
Contributor

hanhanW commented Jan 22, 2025

@lialan is looking at this now. The fix should be ready soon.

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 2025

LLVM Buildbot has detected a new failure on builder reverse-iteration running on hexagon-build-03 while building llvm at step 6 "check_all".

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

Here is the relevant piece of the build log for the reference
Step 6 (check_all) failure: test (failure)
...
[510/1064] Building CXX object unittests/CodeGen/CMakeFiles/CodeGenTests.dir/MachineDomTreeUpdaterTest.cpp.o
[511/1064] Building CXX object unittests/CodeGen/CMakeFiles/CodeGenTests.dir/PassManagerTest.cpp.o
[512/1064] Building CXX object unittests/CodeGen/CMakeFiles/CodeGenTests.dir/MachineInstrTest.cpp.o
[513/1064] Building CXX object unittests/CodeGen/CMakeFiles/CodeGenTests.dir/SelectionDAGPatternMatchTest.cpp.o
[514/1064] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/GIMatchTableExecutorTest.cpp.o
[515/1064] Building CXX object unittests/DebugInfo/DWARF/CMakeFiles/DebugInfoDWARFTests.dir/DWARFExpressionCompactPrinterTest.cpp.o
[516/1064] Building CXX object unittests/CodeGen/CMakeFiles/CodeGenTests.dir/TestAsmPrinter.cpp.o
[517/1064] Building CXX object unittests/DebugInfo/DWARF/CMakeFiles/DebugInfoDWARFTests.dir/DWARFExpressionCopyBytesTest.cpp.o
[518/1064] Building CXX object unittests/CodeGen/CMakeFiles/CodeGenTests.dir/MLRegAllocDevelopmentFeatures.cpp.o
[519/1064] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
/local/clang+llvm-12.0.0-x86_64-linux-gnu-ubuntu-16.04/bin/clang++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/local/mnt/workspace/bots/hexagon-build-03/reverse-iteration/llvm.obj/unittests/CodeGen/GlobalISel -I/local/mnt/workspace/bots/hexagon-build-03/reverse-iteration/llvm.src/llvm/unittests/CodeGen/GlobalISel -I/local/mnt/workspace/bots/hexagon-build-03/reverse-iteration/llvm.obj/include -I/local/mnt/workspace/bots/hexagon-build-03/reverse-iteration/llvm.src/llvm/include -I/local/mnt/workspace/bots/hexagon-build-03/reverse-iteration/llvm.src/third-party/unittest/googletest/include -I/local/mnt/workspace/bots/hexagon-build-03/reverse-iteration/llvm.src/third-party/unittest/googlemock/include -stdlib=libc++ -fPIC -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wmissing-field-initializers -pedantic -Wno-long-long -Wc++98-compat-extra-semi -Wimplicit-fallthrough -Wcovered-switch-default -Wno-noexcept-type -Wnon-virtual-dtor -Wdelete-non-virtual-dtor -Wsuggest-override -Wstring-conversion -Wmisleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG  -Wno-variadic-macros -Wno-gnu-zero-variadic-macro-arguments -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -std=c++17 -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /local/mnt/workspace/bots/hexagon-build-03/reverse-iteration/llvm.src/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/local/mnt/workspace/bots/hexagon-build-03/reverse-iteration/llvm.src/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
    MIBFAdd2.setFlag(MachineInstr::FmNsz);
             ^~~~~~~
             setMIFlag
/local/mnt/workspace/bots/hexagon-build-03/reverse-iteration/llvm.src/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
                             ^
/local/mnt/workspace/bots/hexagon-build-03/reverse-iteration/llvm.src/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
    MIBFAdd2.clearFlag(MachineInstr::FmNsz);
            ^
            ->
/local/mnt/workspace/bots/hexagon-build-03/reverse-iteration/llvm.src/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
    MIBFSub2.setFlag(MachineInstr::FmNoNans);
             ^~~~~~~
             setMIFlag
/local/mnt/workspace/bots/hexagon-build-03/reverse-iteration/llvm.src/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
                             ^
/local/mnt/workspace/bots/hexagon-build-03/reverse-iteration/llvm.src/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
    MIBFSub2.clearFlag(MachineInstr::FmNoNans);
            ^
            ->
/local/mnt/workspace/bots/hexagon-build-03/reverse-iteration/llvm.src/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
    MIBFMul2.setFlag(MachineInstr::FmNoNans);
             ^~~~~~~
             setMIFlag
/local/mnt/workspace/bots/hexagon-build-03/reverse-iteration/llvm.src/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
                             ^
/local/mnt/workspace/bots/hexagon-build-03/reverse-iteration/llvm.src/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
    MIBFMul2.clearFlag(MachineInstr::FmNoNans);
            ^
            ->
/local/mnt/workspace/bots/hexagon-build-03/reverse-iteration/llvm.src/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
    MIBFDiv2.setFlag(MachineInstr::FmNoNans);
             ^~~~~~~
             setMIFlag

@dklimkin
Copy link
Member

I am going to revert this in the meanwhile. Please re-commit with a fixed version.

dklimkin added a commit to dklimkin/llvm-project that referenced this pull request Jan 22, 2025
@hanhanW
Copy link
Contributor

hanhanW commented Jan 22, 2025

I am going to revert this in the meanwhile. Please re-commit with a fixed version.

SG, thanks for the help and sorry about that.

dklimkin added a commit that referenced this pull request Jan 22, 2025
lialan added a commit to lialan/llvm-project that referenced this pull request Jan 22, 2025
@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 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/17654

Here is the relevant piece of the build log for the reference
Step 7 (test-build-unified-tree-check-llvm) failure: test (failure)
...
2.030 [2/10/725] Linking CXX executable unittests/Target/WebAssembly/WebAssemblyTests
2.076 [2/9/726] Linking CXX executable unittests/Target/LoongArch/LoongArchTests
2.122 [2/8/727] Linking CXX executable unittests/Target/ARM/ARMTests
2.207 [2/7/728] Linking CXX executable unittests/Target/SPIRV/SPIRVTests
2.249 [2/6/729] Linking CXX executable unittests/Target/RISCV/RISCVTests
2.263 [2/5/730] Linking CXX executable unittests/Target/AArch64/AArch64Tests
2.354 [2/4/731] Linking CXX executable unittests/tools/llvm-mca/LLVMMCATests
3.038 [2/3/732] Linking CXX executable unittests/Target/AMDGPU/AMDGPUTests
3.065 [2/2/733] Linking CXX executable unittests/tools/llvm-exegesis/LLVMExegesisTests
7.795 [2/1/734] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
CCACHE_CPP2=yes CCACHE_HASHDIR=yes /usr/bin/ccache /usr/bin/clang++ -DGTEST_HAS_RTTI=0 -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/b/1/llvm-x86_64-debian-dylib/build/unittests/CodeGen/GlobalISel -I/b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/unittests/CodeGen/GlobalISel -I/b/1/llvm-x86_64-debian-dylib/build/include -I/b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/include -I/b/1/llvm-x86_64-debian-dylib/llvm-project/third-party/unittest/googletest/include -I/b/1/llvm-x86_64-debian-dylib/llvm-project/third-party/unittest/googlemock/include -fPIC -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wmissing-field-initializers -pedantic -Wno-long-long -Wc++98-compat-extra-semi -Wimplicit-fallthrough -Wcovered-switch-default -Wno-noexcept-type -Wnon-virtual-dtor -Wdelete-non-virtual-dtor -Wsuggest-override -Wstring-conversion -Wmisleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG  -Wno-variadic-macros -Wno-gnu-zero-variadic-macro-arguments -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -std=c++17 -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
    MIBFAdd2.setFlag(MachineInstr::FmNsz);
             ^~~~~~~
             setMIFlag
/b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
                             ^
/b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
    MIBFAdd2.clearFlag(MachineInstr::FmNsz);
            ^
            ->
/b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
    MIBFSub2.setFlag(MachineInstr::FmNoNans);
             ^~~~~~~
             setMIFlag
/b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
                             ^
/b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
    MIBFSub2.clearFlag(MachineInstr::FmNoNans);
            ^
            ->
/b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
    MIBFMul2.setFlag(MachineInstr::FmNoNans);
             ^~~~~~~
             setMIFlag
/b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
                             ^
/b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
    MIBFMul2.clearFlag(MachineInstr::FmNoNans);
            ^
            ->
/b/1/llvm-x86_64-debian-dylib/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
    MIBFDiv2.setFlag(MachineInstr::FmNoNans);
             ^~~~~~~
             setMIFlag

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 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/16857

Here is the relevant piece of the build log for the reference
Step 6 (test-build-unified-tree-check-all) failure: test (failure)
...
5.290 [2/10/1210] Linking CXX executable unittests/CodeGen/CodeGenTests
5.317 [2/9/1211] Linking CXX executable unittests/DebugInfo/DWARF/DebugInfoDWARFTests
5.361 [2/8/1212] Linking CXX executable unittests/DebugInfo/LogicalView/DebugInfoLogicalViewTests
5.524 [2/7/1213] Linking CXX executable tools/clang/unittests/Driver/ClangDriverTests
6.340 [2/6/1214] Linking CXX executable tools/clang/unittests/Frontend/FrontendTests
6.750 [2/5/1215] Linking CXX executable tools/clang/unittests/Tooling/ToolingTests
6.778 [2/4/1216] Linking CXX executable tools/clang/unittests/Interpreter/ExceptionTests/ClangReplInterpreterExceptionTests
7.751 [2/3/1217] Linking CXX executable tools/clang/tools/extra/clangd/unittests/ClangdTests
8.160 [2/2/1218] Linking CXX executable tools/clang/unittests/Interpreter/ClangReplInterpreterTests
8.476 [2/1/1219] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
CCACHE_CPP2=yes CCACHE_HASHDIR=yes /usr/bin/ccache /usr/bin/clang++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/b/1/clang-x86_64-debian-fast/llvm.obj/unittests/CodeGen/GlobalISel -I/b/1/clang-x86_64-debian-fast/llvm.src/llvm/unittests/CodeGen/GlobalISel -I/b/1/clang-x86_64-debian-fast/llvm.obj/include -I/b/1/clang-x86_64-debian-fast/llvm.src/llvm/include -I/b/1/clang-x86_64-debian-fast/llvm.src/third-party/unittest/googletest/include -I/b/1/clang-x86_64-debian-fast/llvm.src/third-party/unittest/googlemock/include -std=c++11 -Wdocumentation -Wno-documentation-deprecated-sync -fPIC -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wmissing-field-initializers -pedantic -Wno-long-long -Wc++98-compat-extra-semi -Wimplicit-fallthrough -Wcovered-switch-default -Wno-noexcept-type -Wnon-virtual-dtor -Wdelete-non-virtual-dtor -Wsuggest-override -Wstring-conversion -Wmisleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG  -Wno-variadic-macros -Wno-gnu-zero-variadic-macro-arguments -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -std=c++17 -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /b/1/clang-x86_64-debian-fast/llvm.src/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
In file included from /b/1/clang-x86_64-debian-fast/llvm.src/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:9:
In file included from /b/1/clang-x86_64-debian-fast/llvm.src/llvm/unittests/CodeGen/GlobalISel/GISelMITest.h:12:
In file included from /b/1/clang-x86_64-debian-fast/llvm.src/llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h:25:
In file included from /b/1/clang-x86_64-debian-fast/llvm.src/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h:20:
In file included from /b/1/clang-x86_64-debian-fast/llvm.src/llvm/include/llvm/CodeGen/TargetLowering.h:35:
In file included from /b/1/clang-x86_64-debian-fast/llvm.src/llvm/include/llvm/CodeGen/SelectionDAG.h:31:
/b/1/clang-x86_64-debian-fast/llvm.src/llvm/include/llvm/CodeGen/SelectionDAGNodes.h:2223:10: warning: HTML start tag prematurely ended, expected attribute name or '>' [-Wdocumentation]
  /// "<a, a+n, a+2n, a+3n, ...>" where a is integer and n is a non-zero integer,
         ^
/b/1/clang-x86_64-debian-fast/llvm.src/llvm/include/llvm/CodeGen/SelectionDAGNodes.h:2224:20: warning: HTML start tag prematurely ended, expected attribute name or '>' [-Wdocumentation]
  /// the value "<a,n>" is returned.
                   ^
/b/1/clang-x86_64-debian-fast/llvm.src/llvm/include/llvm/CodeGen/SelectionDAGNodes.h:2224:19: warning: HTML tag 'a' requires an end tag [-Wdocumentation-html]
  /// the value "<a,n>" is returned.
                  ^
/b/1/clang-x86_64-debian-fast/llvm.src/llvm/include/llvm/CodeGen/SelectionDAGNodes.h:2223:9: warning: HTML tag 'a' requires an end tag [-Wdocumentation-html]
  /// "<a, a+n, a+2n, a+3n, ...>" where a is integer and n is a non-zero integer,
        ^
In file included from /b/1/clang-x86_64-debian-fast/llvm.src/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:9:
In file included from /b/1/clang-x86_64-debian-fast/llvm.src/llvm/unittests/CodeGen/GlobalISel/GISelMITest.h:12:
In file included from /b/1/clang-x86_64-debian-fast/llvm.src/llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h:25:
In file included from /b/1/clang-x86_64-debian-fast/llvm.src/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h:20:
/b/1/clang-x86_64-debian-fast/llvm.src/llvm/include/llvm/CodeGen/TargetLowering.h:5314:14: warning: parameter 'N' not found in the function declaration [-Wdocumentation]
  /// \param N Node to expand
             ^
In file included from /b/1/clang-x86_64-debian-fast/llvm.src/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:9:
In file included from /b/1/clang-x86_64-debian-fast/llvm.src/llvm/unittests/CodeGen/GlobalISel/GISelMITest.h:26:
/b/1/clang-x86_64-debian-fast/llvm.src/llvm/include/llvm/MC/TargetRegistry.h:85:12: warning: parameter 'ShowInst' not found in the function declaration [-Wdocumentation]
/// \param ShowInst - Whether to show the MCInst representation inline with
           ^~~~~~~~
In file included from /b/1/clang-x86_64-debian-fast/llvm.src/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:9:
In file included from /b/1/clang-x86_64-debian-fast/llvm.src/llvm/unittests/CodeGen/GlobalISel/GISelMITest.h:29:
In file included from /b/1/clang-x86_64-debian-fast/llvm.src/llvm/include/llvm/Target/TargetMachine.h:19:
In file included from /b/1/clang-x86_64-debian-fast/llvm.src/llvm/include/llvm/MC/MCStreamer.h:30:
/b/1/clang-x86_64-debian-fast/llvm.src/llvm/include/llvm/TargetParser/ARMTargetParser.h:267:12: warning: parameter 'Arch' not found in the function declaration [-Wdocumentation]
/// \param Arch the architecture name (e.g., "armv7s"). If it is an empty
           ^~~~

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 2025

LLVM Buildbot has detected a new failure on builder llvm-clang-win-x-armv7l running on as-builder-1 while building llvm at step 9 "test-check-llvm".

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

Here is the relevant piece of the build log for the reference
Step 9 (test-check-llvm) failure: Test just built components: check-llvm completed (failure)
...
5.603 [2/16/722]Linking CXX executable unittests\Transforms\IPO\IPOTests.exe
6.565 [2/15/723]Linking CXX executable unittests\tools\llvm-exegesis\LLVMExegesisTests.exe
6.919 [2/14/724]Linking CXX executable unittests\Transforms\Coroutines\CoroTests.exe
6.971 [2/13/725]Linking CXX executable unittests\Transforms\Instrumentation\InstrumentationTests.exe
7.028 [2/12/726]Linking CXX executable unittests\Target\TargetMachineCTests.exe
7.046 [2/11/727]Linking CXX executable unittests\MIR\MIRTests.exe
7.074 [2/10/728]Linking CXX executable unittests\MI\MITests.exe
7.104 [2/9/729]Linking CXX executable unittests\CodeGen\CodeGenTests.exe
7.105 [2/8/730]Linking CXX executable unittests\Transforms\Utils\UtilsTests.exe
7.118 [2/7/731]Building CXX object unittests\CodeGen\GlobalISel\CMakeFiles\GlobalISelTests.dir\CSETest.cpp.obj
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.obj 
C:\ninja\ccache.exe C:\PROGRA~1\MICROS~2\2022\COMMUN~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe  /nologo /TP -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -DUNICODE -D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS -D_GLIBCXX_ASSERTIONS -D_HAS_EXCEPTIONS=0 -D_SCL_SECURE_NO_DEPRECATE -D_SCL_SECURE_NO_WARNINGS -D_UNICODE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -IC:\buildbot\as-builder-1\x-armv7l\build\unittests\CodeGen\GlobalISel -IC:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel -IC:\buildbot\as-builder-1\x-armv7l\build\include -IC:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include -IC:\buildbot\as-builder-1\x-armv7l\llvm-project\third-party\unittest\googletest\include -IC:\buildbot\as-builder-1\x-armv7l\llvm-project\third-party\unittest\googlemock\include -external:IC:\buildbot\fs\zlib-win32\include -external:W0 -D__OPTIMIZE__ /Zc:inline /Zc:preprocessor /Zc:__cplusplus /Oi /bigobj /permissive- /W4 -wd4141 -wd4146 -wd4244 -wd4267 -wd4291 -wd4351 -wd4456 -wd4457 -wd4458 -wd4459 -wd4503 -wd4624 -wd4722 -wd4100 -wd4127 -wd4512 -wd4505 -wd4610 -wd4510 -wd4702 -wd4245 -wd4706 -wd4310 -wd4701 -wd4703 -wd4389 -wd4611 -wd4805 -wd4204 -wd4577 -wd4091 -wd4592 -wd4319 -wd4709 -wd5105 -wd4324 -wd4251 -wd4275 -w14062 -we4238 /Gw /O2 /Ob2  -MD  /EHs-c- /GR- -UNDEBUG -std:c++17 /showIncludes /Founittests\CodeGen\GlobalISel\CMakeFiles\GlobalISelTests.dir\CSETest.cpp.obj /Fdunittests\CodeGen\GlobalISel\CMakeFiles\GlobalISelTests.dir\ /FS -c C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(84): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(87): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(97): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(100): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(110): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(113): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(123): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(126): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(136): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(139): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(149): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(152): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(161): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(164): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(174): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(177): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(186): error C2039: 'setFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\unittests\CodeGen\GlobalISel\CSETest.cpp(189): error C2039: 'clearFlag': is not a member of 'llvm::MachineInstrBuilder'
C:\buildbot\as-builder-1\x-armv7l\llvm-project\llvm\include\llvm/CodeGen/MachineInstrBuilder.h(71): note: see declaration of 'llvm::MachineInstrBuilder'
7.129 [2/6/732]Linking CXX executable unittests\ExecutionEngine\Orc\OrcJITTests.exe

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 2025

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

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

Here is the relevant piece of the build log for the reference
Step 5 (ninja check 1) failure: stage 1 checked (failure)
...
[119/207] Linking CXX executable tools/clang/tools/extra/include-cleaner/unittests/ClangIncludeCleanerTests
[120/207] Generating ASAN_INST_TEST_OBJECTS.gtest-all.cc.sparc-inline.o
[121/207] Generating SPARCSunOSConfig/Asan-sparc-inline-Test
[122/207] Generating ASAN_INST_TEST_OBJECTS.asan_test.cpp.sparc-calls.o
[123/207] Generating SPARCSunOSDynamicConfig/Asan-sparc-inline-Dynamic-Test
[124/207] Preparing lit tests
[125/207] Linking CXX executable tools/clang/tools/extra/unittests/clang-change-namespace/ClangChangeNamespaceTests
[126/207] Linking CXX executable tools/clang/tools/extra/unittests/clang-doc/ClangDocTests
[127/207] Linking CXX executable tools/clang/tools/extra/unittests/clang-include-fixer/ClangIncludeFixerTests
[128/207] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
/opt/llvm/19/bin/clang++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_FILE_OFFSET_BITS=64 -D_GLIBCXX_ASSERTIONS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/stage1/unittests/CodeGen/GlobalISel -I/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/llvm/unittests/CodeGen/GlobalISel -I/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/stage1/include -I/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/llvm/include -I/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/llvm/include/llvm/Support/Solaris -I/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/third-party/unittest/googletest/include -I/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/third-party/unittest/googlemock/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wmissing-field-initializers -pedantic -Wno-long-long -Wc++98-compat-extra-semi -Wimplicit-fallthrough -Wcovered-switch-default -Wno-noexcept-type -Wnon-virtual-dtor -Wdelete-non-virtual-dtor -Wsuggest-override -Wstring-conversion -Wmisleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections  -O -DNDEBUG  -Wno-variadic-macros -Wno-gnu-zero-variadic-macro-arguments -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -std=c++17 -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
   84 |     MIBFAdd2.setFlag(MachineInstr::FmNsz);
      |              ^~~~~~~
      |              setMIFlag
/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
   87 |     MIBFAdd2.clearFlag(MachineInstr::FmNsz);
      |             ^
      |             ->
/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
   97 |     MIBFSub2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
  100 |     MIBFSub2.clearFlag(MachineInstr::FmNoNans);
      |             ^
      |             ->
/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
  110 |     MIBFMul2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag
/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  280 |   const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
      |                              ^
/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
  113 |     MIBFMul2.clearFlag(MachineInstr::FmNoNans);
      |             ^
      |             ->
/opt/llvm-buildbot/home/solaris11-sparcv9/clang-solaris11-sparcv9/llvm/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
  123 |     MIBFDiv2.setFlag(MachineInstr::FmNoNans);
      |              ^~~~~~~
      |              setMIFlag

@llvm-ci
Copy link
Collaborator

llvm-ci commented Jan 22, 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/20522

Here is the relevant piece of the build log for the reference
Step 7 (test-build-unified-tree-check-all) failure: test (failure)
...
-- Configuring done
-- Generating done
-- Build files have been written to: /build/buildbot/premerge-monolithic-linux/build/runtimes/runtimes-bins
2.900 [13/58/79] cd /build/buildbot/premerge-monolithic-linux/llvm-project/clang/bindings/python && /etc/cmake/bin/cmake -E env CLANG_NO_DEFAULT_CONFIG=1 CLANG_LIBRARY_PATH=/build/buildbot/premerge-monolithic-linux/build/lib /usr/bin/python3.10 -m unittest discover
.........................................................................................................................................................
----------------------------------------------------------------------
Ran 153 tests in 2.727s

OK
9.182 [6/2/142] Building CXX object unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o
FAILED: unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o 
CCACHE_CPP2=yes CCACHE_HASHDIR=yes /usr/bin/ccache /usr/bin/clang++ -DGTEST_HAS_RTTI=0 -DLLVM_BUILD_STATIC -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/build/buildbot/premerge-monolithic-linux/build/unittests/CodeGen/GlobalISel -I/build/buildbot/premerge-monolithic-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel -I/build/buildbot/premerge-monolithic-linux/build/include -I/build/buildbot/premerge-monolithic-linux/llvm-project/llvm/include -I/build/buildbot/premerge-monolithic-linux/llvm-project/third-party/unittest/googletest/include -I/build/buildbot/premerge-monolithic-linux/llvm-project/third-party/unittest/googlemock/include -gmlt -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wmissing-field-initializers -pedantic -Wno-long-long -Wc++98-compat-extra-semi -Wimplicit-fallthrough -Wcovered-switch-default -Wno-noexcept-type -Wnon-virtual-dtor -Wdelete-non-virtual-dtor -Wsuggest-override -Wstring-conversion -Wmisleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG  -Wno-variadic-macros -Wno-gnu-zero-variadic-macro-arguments -fno-exceptions -funwind-tables -fno-rtti -UNDEBUG -Wno-suggest-override -std=c++17 -MD -MT unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -MF unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o.d -o unittests/CodeGen/GlobalISel/CMakeFiles/GlobalISelTests.dir/CSETest.cpp.o -c /build/buildbot/premerge-monolithic-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
/build/buildbot/premerge-monolithic-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:84:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
    MIBFAdd2.setFlag(MachineInstr::FmNsz);
             ^~~~~~~
             setMIFlag
/build/buildbot/premerge-monolithic-linux/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
                             ^
/build/buildbot/premerge-monolithic-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:87:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
    MIBFAdd2.clearFlag(MachineInstr::FmNsz);
            ^
            ->
/build/buildbot/premerge-monolithic-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:97:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
    MIBFSub2.setFlag(MachineInstr::FmNoNans);
             ^~~~~~~
             setMIFlag
/build/buildbot/premerge-monolithic-linux/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
                             ^
/build/buildbot/premerge-monolithic-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:100:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
    MIBFSub2.clearFlag(MachineInstr::FmNoNans);
            ^
            ->
/build/buildbot/premerge-monolithic-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:110:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
    MIBFMul2.setFlag(MachineInstr::FmNoNans);
             ^~~~~~~
             setMIFlag
/build/buildbot/premerge-monolithic-linux/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h:280:30: note: 'setMIFlag' declared here
  const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
                             ^
/build/buildbot/premerge-monolithic-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:113:13: error: no member named 'clearFlag' in 'llvm::MachineInstrBuilder'; did you mean to use '->' instead of '.'?
    MIBFMul2.clearFlag(MachineInstr::FmNoNans);
            ^
            ->
/build/buildbot/premerge-monolithic-linux/llvm-project/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp:123:14: error: no member named 'setFlag' in 'llvm::MachineInstrBuilder'; did you mean 'setMIFlag'?
    MIBFDiv2.setFlag(MachineInstr::FmNoNans);
             ^~~~~~~
             setMIFlag

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.

[AMDGPU][GISel] Dead code generated by GISel
8 participants