Displaying 2 results from an estimated 2 matches for "7907ea95".
Did you mean:
7107ea9
2012 Apr 20
0
[LLVMdev] def-use chains and use-def chains
...; please give me any references or examples to understand more about
> use_iterator.
>
>
> Best Regards,
> Srikanth Vaindam
>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120420/7907ea95/attachment.html>
2012 Apr 19
3
[LLVMdev] def-use chains and use-def chains
Hi,
I need to find out all the places where the value of a variable is being
used. For this I have to implement reaching definitions(def-use chains).
When I searched for its implementation I found Iterating over def-use &
use-def chains <http://llvm.org/docs/ProgrammersManual.html#iterate_chains>.
will this work for finding the places where a variable is reaching?
I tried to use