mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
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:
parent
dd841aeb8d
commit
595d2f670a
@ -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";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user