aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/DataStructure/Printer.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-11-03 19:46:15 +0000
committerChris Lattner <sabre@nondot.org>2002-11-03 19:46:15 +0000
commitef69ccf71ba6519ceb878c75a11557e64b744538 (patch)
treee3afd8313fedc6c30df1edde4ebd08a2fc2a2b01 /lib/Analysis/DataStructure/Printer.cpp
parent36aff6ec2ddeadbe06c7e52af8321a8bed2552d5 (diff)
Change the letters used to represent stack and heap allocations to "S" and "H"
respectively. This is to make presentation easier in the paper. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4514 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/Printer.cpp')
-rw-r--r--lib/Analysis/DataStructure/Printer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/DataStructure/Printer.cpp b/lib/Analysis/DataStructure/Printer.cpp
index 26424bed07..a58f7ef4ee 100644
--- a/lib/Analysis/DataStructure/Printer.cpp
+++ b/lib/Analysis/DataStructure/Printer.cpp
@@ -36,8 +36,8 @@ static string getCaption(const DSNode *N, const DSGraph *G) {
OS << "\n";
}
- if (N->NodeType & DSNode::AllocaNode ) OS << "A";
- if (N->NodeType & DSNode::NewNode ) OS << "N";
+ if (N->NodeType & DSNode::AllocaNode ) OS << "S";
+ if (N->NodeType & DSNode::NewNode ) OS << "H";
if (N->NodeType & DSNode::GlobalNode ) OS << "G";
if (N->NodeType & DSNode::UnknownNode) OS << "U";
if (N->NodeType & DSNode::Incomplete ) OS << "I";