mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-15 16:07:49 +00:00
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
This commit is contained in:
parent
eb49618531
commit
7287a8f9a8
@ -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";
|
||||
|
Loading…
x
Reference in New Issue
Block a user