search for: 5c27ac13

Displaying 3 results from an estimated 3 matches for "5c27ac13".

2009 Sep 15
0
[LLVMdev] SCCIterator and unconnected graphs
On Sep 3, 2009, at 4:15 AM, Hans Vandierendonck wrote: Hi, > > I am using the scc_iterator class in my code on a CallGraph, where > some > functions are not called from within the module. It seems that > scc_iterator does not list all SCCs if the graph is not connected; > only > those nodes connected to the node pointed to by > GraphTraits<...>::getEntryNode() are
2009 Sep 15
1
[LLVMdev] SCCIterator and unconnected graphs
...be/~hvdieren/ ------------------------------------------------------------------------------- -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: bugpoint-reduced-simplified.ll URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090915/5c27ac13/attachment.ksh> -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: bugpoint-reduced-simplified2.ll URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090915/5c27ac13/attachment-0001.ksh> -------------- next part -------------- A...
2009 Sep 03
3
[LLVMdev] SCCIterator and unconnected graphs
Hi, I am using the scc_iterator class in my code on a CallGraph, where some functions are not called from within the module. It seems that scc_iterator does not list all SCCs if the graph is not connected; only those nodes connected to the node pointed to by GraphTraits<...>::getEntryNode() are returned. Can someone verify this behavior? Any tips on how I should go about extending the