summaryrefslogtreecommitdiffstats
path: root/llvm/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
commit4b6a8130487b86a939a88c0659600c83c34734ee (patch)
treecfb1fbd1bc8d7eb38f60d1204327dbb9b635177f /llvm/lib/Analysis/DataStructure/Printer.cpp
parent64b4ee3abce1e665cf085781da82018290f68dc6 (diff)
downloadbcm5719-llvm-4b6a8130487b86a939a88c0659600c83c34734ee.tar.gz
bcm5719-llvm-4b6a8130487b86a939a88c0659600c83c34734ee.zip
Change the letters used to represent stack and heap allocations to "S" and "H"
respectively. This is to make presentation easier in the paper. llvm-svn: 4514
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/Printer.cpp')
-rw-r--r--llvm/lib/Analysis/DataStructure/Printer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/DataStructure/Printer.cpp b/llvm/lib/Analysis/DataStructure/Printer.cpp
index 26424bed070..a58f7ef4eee 100644
--- a/llvm/lib/Analysis/DataStructure/Printer.cpp
+++ b/llvm/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";
OpenPOWER on IntegriCloud