1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

don't print GlobalAddressSDNode's with an offset of zero as "foo0".

llvm-svn: 56399
This commit is contained in:
Chris Lattner 2008-09-21 18:38:31 +00:00
parent c018045520
commit 01cab96cba

View File

@ -126,12 +126,13 @@ std::string DOTGraphTraits<SelectionDAG*>::getNodeLabel(const SDNode *Node,
Op += ": " + ftostr(CSDN->getValueAPF());
} else if (const GlobalAddressSDNode *GADN =
dyn_cast<GlobalAddressSDNode>(Node)) {
int offset = GADN->getOffset();
Op += ": " + GADN->getGlobal()->getName();
if (offset > 0)
Op += "+" + itostr(offset);
else
Op += itostr(offset);
if (int Offset = GADN->getOffset()) {
if (Offset > 0)
Op += "+" + itostr(Offset);
else
Op += itostr(Offset);
}
} else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(Node)) {
Op += " " + itostr(FIDN->getIndex());
} else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(Node)) {