dominik-steenken wrote: > LLVM Buildbot has detected a new failure on builder > `release-noassertions-warnings` running on `google-integrate-b1` while > building `clang,llvm` at step 6 "build-default". > > Full details are available at: > https://lab.llvm.org/buildbot/#/builders/228/builds/377
This is happening because the unused variable that `-Werror` complains about is only used in an assertion, and this particular build has turned off assertions. What is the overall policy here? Should I make a follow-up PR that just drops the var and grabs the register from the MI as part of the assert expression? https://github.com/llvm/llvm-project/pull/169317 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
