Print argument scalars as ellipses instead of boxes

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2293 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-04-18 18:14:19 +00:00
parent dd841aeb8d
commit 595d2f670a

View File

@ -328,7 +328,8 @@ void FunctionDSGraph::printFunction(std::ostream &O,
WriteTypeSymbolic(OS, I->first->getType(), Func->getParent());
// Create node for I->first
O << "\t\tNode" << (void*)I->first << Label << " [shape=\"box\", label=\""
O << "\t\tNode" << (void*)I->first << Label << " [shape=\""
<< (isa<Argument>(I->first) ? "ellipse" : "box") << "\", label=\""
<< escapeLabel(OS.str()) << "\\n%" << escapeLabel(I->first->getName())
<< "\",fontsize=\"12.0\",color=\"gray70\"];\n";