[llvm-commits] CVS: llvm/include/llvm/Analysis/DSNode.h
Chris Lattner
lattner at cs.uiuc.edu
Fri Jan 31 21:29:01 PST 2003
Changes in directory llvm/include/llvm/Analysis:
DSNode.h updated: 1.17 -> 1.18
---
Log message:
Add new composition mask
---
Diffs of the changes:
Index: llvm/include/llvm/Analysis/DSNode.h
diff -u llvm/include/llvm/Analysis/DSNode.h:1.17 llvm/include/llvm/Analysis/DSNode.h:1.18
--- llvm/include/llvm/Analysis/DSNode.h:1.17 Wed Jan 29 15:09:59 2003
+++ llvm/include/llvm/Analysis/DSNode.h Fri Jan 31 21:28:26 2003
@@ -62,6 +62,8 @@
#if 1
DEAD = 1 << 8, // This node is dead and should not be pointed to
#endif
+
+ Composition = AllocaNode | HeapNode | GlobalNode | UnknownNode,
};
/// NodeType - A union of the above bits. "Shadow" nodes do not add any flags
More information about the llvm-commits
mailing list