[llvm] [TargetVerifier][AMDGPU] Add TargetVerifier. (PR #123609)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 2 06:27:52 PDT 2025


================
@@ -742,9 +742,13 @@ PreservedAnalyses LintPass::run(Function &F, FunctionAnalysisManager &AM) {
   Lint L(Mod, DL, AA, AC, DT, TLI);
   L.visit(F);
   dbgs() << L.MessagesStr.str();
-  if (AbortOnError && !L.MessagesStr.str().empty())
-    report_fatal_error(
-        "linter found errors, aborting. (enabled by abort-on-error)", false);
+  if (!L.MessagesStr.str().empty()) {
----------------
arsenm wrote:

Shouldn't need the str()? 

https://github.com/llvm/llvm-project/pull/123609


More information about the llvm-commits mailing list