aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-03-01 19:36:50 +0000
committerChris Lattner <sabre@nondot.org>2004-03-01 19:36:50 +0000
commit23511597fe245d9fdc1b72cfe5b76453f74345a7 (patch)
treea73abff3144d37f8cfdb7f3476592b6be7bca30e /include
parent82e9d7224e537cdc984f23fe4c6ffe5161b5d756 (diff)
downloadexternal_llvm-23511597fe245d9fdc1b72cfe5b76453f74345a7.zip
external_llvm-23511597fe245d9fdc1b72cfe5b76453f74345a7.tar.gz
external_llvm-23511597fe245d9fdc1b72cfe5b76453f74345a7.tar.bz2
Add new method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12056 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Analysis/DSNode.h1
-rw-r--r--include/llvm/Analysis/DataStructure/DSNode.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/Analysis/DSNode.h b/include/llvm/Analysis/DSNode.h
index 6112931..e58c8f9 100644
--- a/include/llvm/Analysis/DSNode.h
+++ b/include/llvm/Analysis/DSNode.h
@@ -305,6 +305,7 @@ public:
DSNode *setIncompleteMarker() { NodeType |= Incomplete; return this; }
DSNode *setModifiedMarker() { NodeType |= Modified; return this; }
DSNode *setReadMarker() { NodeType |= Read; return this; }
+ DSNode *setArrayMarker() { NodeType |= Array; return this; }
void makeNodeDead() {
Globals.clear();
diff --git a/include/llvm/Analysis/DataStructure/DSNode.h b/include/llvm/Analysis/DataStructure/DSNode.h
index 6112931..e58c8f9 100644
--- a/include/llvm/Analysis/DataStructure/DSNode.h
+++ b/include/llvm/Analysis/DataStructure/DSNode.h
@@ -305,6 +305,7 @@ public:
DSNode *setIncompleteMarker() { NodeType |= Incomplete; return this; }
DSNode *setModifiedMarker() { NodeType |= Modified; return this; }
DSNode *setReadMarker() { NodeType |= Read; return this; }
+ DSNode *setArrayMarker() { NodeType |= Array; return this; }
void makeNodeDead() {
Globals.clear();