From: Chris Lattner Date: Sat, 1 Feb 2003 03:28:26 +0000 (+0000) Subject: Add new composition mask X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cb98327142f46a59246caa32f5b2f4dad3b48af0;p=oota-llvm.git Add new composition mask git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5454 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/DSNode.h b/include/llvm/Analysis/DSNode.h index cf298a234e4..5edbd72f830 100644 --- a/include/llvm/Analysis/DSNode.h +++ b/include/llvm/Analysis/DSNode.h @@ -62,6 +62,8 @@ public: #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 diff --git a/include/llvm/Analysis/DataStructure/DSNode.h b/include/llvm/Analysis/DataStructure/DSNode.h index cf298a234e4..5edbd72f830 100644 --- a/include/llvm/Analysis/DataStructure/DSNode.h +++ b/include/llvm/Analysis/DataStructure/DSNode.h @@ -62,6 +62,8 @@ public: #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