diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-03 19:46:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-03 19:46:15 +0000 |
commit | 4b6a8130487b86a939a88c0659600c83c34734ee (patch) | |
tree | cfb1fbd1bc8d7eb38f60d1204327dbb9b635177f /llvm/lib/Analysis/DataStructure/Printer.cpp | |
parent | 64b4ee3abce1e665cf085781da82018290f68dc6 (diff) | |
download | bcm5719-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.cpp | 4 |
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"; |