Displaying 2 results from an estimated 2 matches for "6dea1c90".
Did you mean:
52ea1c90
2013 Dec 17
0
[LLVMdev] Debug Info Verifier: should we create a module pass for it?
...ifier and the debug
> info verifier, each will traverse the module.
>
> Comments and suggestions are welcome.
>
> Thanks,
> Manman
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131217/6dea1c90/attachment.html>
2013 Nov 19
2
[LLVMdev] Debug Info Verifier: should we create a module pass for it?
Hi all,
Currently, debug info verifier is part of the IR verifier which is a
function pass.
One part of the IR verifier that I don't like is it verifies module-level
data in doFinalization. If we have two verifier passes in a single module
pass manager, doFinalization of the two passes will run on the same module
data after all passes.
I followed the same model for debug info verifier: