[llvm-commits] CVS: llvm/lib/Analysis/DataStructure/Printer.cpp

Chris Lattner lattner at cs.uiuc.edu
Sun Nov 3 13:47:01 PST 2002


Changes in directory llvm/lib/Analysis/DataStructure:

Printer.cpp updated: 1.29 -> 1.30

---
Log message:

Change the letters used to represent stack and heap allocations to "S" and "H" 
respectively.  This is to make presentation easier in the paper.


---
Diffs of the changes:

Index: llvm/lib/Analysis/DataStructure/Printer.cpp
diff -u llvm/lib/Analysis/DataStructure/Printer.cpp:1.29 llvm/lib/Analysis/DataStructure/Printer.cpp:1.30
--- llvm/lib/Analysis/DataStructure/Printer.cpp:1.29	Fri Nov  1 18:36:02 2002
+++ llvm/lib/Analysis/DataStructure/Printer.cpp	Sun Nov  3 13:46:15 2002
@@ -36,8 +36,8 @@
     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";





More information about the llvm-commits mailing list