[llvm-commits] CVS: llvm/include/llvm/Analysis/DSNode.h

Chris Lattner lattner at cs.uiuc.edu
Sun Nov 3 15:25:00 PST 2002


Changes in directory llvm/include/llvm/Analysis:

DSNode.h updated: 1.5 -> 1.6

---
Log message:

Rename NewNode flag to HeapNode


---
Diffs of the changes:

Index: llvm/include/llvm/Analysis/DSNode.h
diff -u llvm/include/llvm/Analysis/DSNode.h:1.5 llvm/include/llvm/Analysis/DSNode.h:1.6
--- llvm/include/llvm/Analysis/DSNode.h:1.5	Sat Nov  2 15:18:53 2002
+++ llvm/include/llvm/Analysis/DSNode.h	Sun Nov  3 15:23:56 2002
@@ -63,7 +63,7 @@
   enum NodeTy {
     ShadowNode  = 0,        // Nothing is known about this node...
     AllocaNode  = 1 << 0,   // This node was allocated with alloca
-    NewNode     = 1 << 1,   // This node was allocated with malloc
+    HeapNode    = 1 << 1,   // This node was allocated with malloc
     GlobalNode  = 1 << 2,   // This node was allocated by a global var decl
     UnknownNode = 1 << 3,   // This node points to unknown allocated memory 
     Incomplete  = 1 << 4,   // This node may not be complete





More information about the llvm-commits mailing list