search for: e04e3d92

Displaying 2 results from an estimated 2 matches for "e04e3d92".

2018 Jul 12
2
Should Verifier be an analysis?
...adds a massive amount of noise to the debugging experience when viewing -print-after-all and searching for where some specific transform happened -Matt -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180712/e04e3d92/attachment.html>
2018 Jul 12
5
Should Verifier be an analysis?
Hello all, I came across the code of Verifier, and see that it doesn't modify the IR at all. Why it is not considered as an analysis pass? Actually, this will have impact on debugify-each and print-before/after-all: we are not supposed to print/debugify Verifier pass, but since Verifier is declared as a transformation (well, a non-analysis) pass, we actually do print/debugify it. Thanks for