From cb98327142f46a59246caa32f5b2f4dad3b48af0 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 1 Feb 2003 03:28:26 +0000 Subject: [PATCH] Add new composition mask git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5454 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/DSNode.h | 2 ++ include/llvm/Analysis/DataStructure/DSNode.h | 2 ++ 2 files changed, 4 insertions(+) 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 -- 2.50.1