[PATCH] D19988: Separate the Verifier into an analysis and a transformation pass optionally stripping malformed debug info.

Adrian Prantl via llvm-commits llvm-commits at lists.llvm.org
Mon May 9 10:02:23 PDT 2016


aprantl marked an inline comment as done.

================
Comment at: lib/IR/Verifier.cpp:4511
@@ -4489,1 +4510,3 @@
+      report_fatal_error("Failed to strip malformed debug info");
+  }
   return PreservedAnalyses::all();
----------------
joker.eph wrote:
> So from now on the verifier will never assert on invalid debug info but will drop them right?
No, in an Asserts build, it will assert on invalid debug info, iff fatal errors are requested (which is the default and pretty much only disabled for unit tests).


http://reviews.llvm.org/D19988





More information about the llvm-commits mailing list