search for: testcgit

Displaying 3 results from an estimated 3 matches for "testcgit".

Did you mean: test_bit
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
...t -------------- 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 non-text attachment was scrubbed... Name: TestCGIt.cpp Type: text/x-c++src Size: 2158 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090915/5c27ac13/attachment.cpp>
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