Minor tweaks to printing. Close the file before viewing it in viewGraph
authorChris Lattner <sabre@nondot.org>
Tue, 11 Feb 2003 19:27:27 +0000 (19:27 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 11 Feb 2003 19:27:27 +0000 (19:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5535 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DataStructure/Printer.cpp

index 09748ff839732b0e3e15caeea9488f5cc164203d..6a85ded331220d5cac69f42bbd13fe26a0cda2fe 100644 (file)
@@ -47,6 +47,7 @@ static std::string getCaption(const DSNode *N, const DSGraph *G) {
     if (N->NodeType & DSNode::Incomplete ) OS << "I";
     if (N->NodeType & DSNode::Modified   ) OS << "M";
     if (N->NodeType & DSNode::Read       ) OS << "R";
+    if (N->NodeType & DSNode::DEAD       ) OS << "<dead>";
     OS << "\n";
   }
 
@@ -64,7 +65,7 @@ struct DOTGraphTraits<const DSGraph*> : public DefaultDOTGraphTraits {
     if (G->hasFunction())
       return "Function " + G->getFunction().getName();
     else
-      return "Globals graph";
+      return "Global graph";
   }
 
   static const char *getGraphProperties(const DSGraph *G) {
@@ -189,6 +190,7 @@ void DSGraph::viewGraph() const {
     return;
   }
   print(F);
+  F.close();
   if (system("dot -Tps /tmp/tempgraph.dot > /tmp/tempgraph.ps"))
     std::cerr << "Error running dot: 'dot' not in path?\n";
   system("gv /tmp/tempgraph.ps");