search for: llvm_analysis_dsnode_h

Displaying 1 result from an estimated 1 matches for "llvm_analysis_dsnode_h".

2002 Nov 18
0
[LLVMdev] Fixed DSGraph iteration, depth first search, etc...
...namespace DS { // FIXME: After the paper, this should get cleaned up enum { PointerShift = 3, // 64bit ptrs = 3, 32 bit ptrs = 2 --- llvm/include/llvm/Analysis/DSNode.h:1.14 Sun Nov 10 00:48:24 2002 +++ llvm/include/llvm/Analysis/DSNode.h Mon Nov 18 15:45:30 2002 @@ -8,6 +8,8 @@ #define LLVM_ANALYSIS_DSNODE_H #include "llvm/Analysis/DSSupport.h" +template<typename BaseType> +class DSNodeIterator; // Data structure graph traversal iterator //===----------------------------------------------------------------------===// /// DSNode - Data structure node class @@ -76,11 +79,13...