diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-03 21:24:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-03 21:24:04 +0000 |
commit | d18f342af8c716a88917ef2694f798d67109801d (patch) | |
tree | f9e8463cff3859fecbb6525ff483a5a0e95cc954 /lib/Analysis/DataStructure/Printer.cpp | |
parent | ef69ccf71ba6519ceb878c75a11557e64b744538 (diff) |
Rename NewNode flag to HeapNode
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4515 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/Printer.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/Printer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/Printer.cpp b/lib/Analysis/DataStructure/Printer.cpp index a58f7ef4ee..8514d53faf 100644 --- a/lib/Analysis/DataStructure/Printer.cpp +++ b/lib/Analysis/DataStructure/Printer.cpp @@ -37,7 +37,7 @@ static string getCaption(const DSNode *N, const DSGraph *G) { } if (N->NodeType & DSNode::AllocaNode ) OS << "S"; - if (N->NodeType & DSNode::NewNode ) OS << "H"; + if (N->NodeType & DSNode::HeapNode ) OS << "H"; if (N->NodeType & DSNode::GlobalNode ) OS << "G"; if (N->NodeType & DSNode::UnknownNode) OS << "U"; if (N->NodeType & DSNode::Incomplete ) OS << "I"; |