diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-03 21:24:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-03 21:24:04 +0000 |
commit | d18f342af8c716a88917ef2694f798d67109801d (patch) | |
tree | f9e8463cff3859fecbb6525ff483a5a0e95cc954 /include | |
parent | ef69ccf71ba6519ceb878c75a11557e64b744538 (diff) | |
download | external_llvm-d18f342af8c716a88917ef2694f798d67109801d.zip external_llvm-d18f342af8c716a88917ef2694f798d67109801d.tar.gz external_llvm-d18f342af8c716a88917ef2694f798d67109801d.tar.bz2 |
Rename NewNode flag to HeapNode
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4515 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Analysis/DSNode.h | 2 | ||||
-rw-r--r-- | include/llvm/Analysis/DataStructure/DSNode.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Analysis/DSNode.h b/include/llvm/Analysis/DSNode.h index 12d2cbc..367c377 100644 --- a/include/llvm/Analysis/DSNode.h +++ b/include/llvm/Analysis/DSNode.h @@ -63,7 +63,7 @@ public: 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 diff --git a/include/llvm/Analysis/DataStructure/DSNode.h b/include/llvm/Analysis/DataStructure/DSNode.h index 12d2cbc..367c377 100644 --- a/include/llvm/Analysis/DataStructure/DSNode.h +++ b/include/llvm/Analysis/DataStructure/DSNode.h @@ -63,7 +63,7 @@ public: 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 |