summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-01-15 21:11:37 +0000
committerChris Lattner <sabre@nondot.org>2005-01-15 21:11:37 +0000
commit8a389bb37603fa99a980475a4f5cdc27fa4014f1 (patch)
treeefaecc2bc159758fc569f9fdd9bba58c492c8655 /lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
parent33eba0440c3872fb87d31e7ea806e89ae444b756 (diff)
downloadllvm-8a389bb37603fa99a980475a4f5cdc27fa4014f1.tar.gz
llvm-8a389bb37603fa99a980475a4f5cdc27fa4014f1.tar.bz2
llvm-8a389bb37603fa99a980475a4f5cdc27fa4014f1.tar.xz
Print extra type for nodes with extra type info.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19575 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
index f398568130..00f8657756 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
@@ -90,6 +90,8 @@ std::string DOTGraphTraits<SelectionDAG*>::getNodeLabel(const SDNode *Node,
} else if (const ExternalSymbolSDNode *ES =
dyn_cast<ExternalSymbolSDNode>(Node)) {
Op += "'" + std::string(ES->getSymbol()) + "'";
+ } else if (const MVTSDNode *M = dyn_cast<MVTSDNode>(Node)) {
+ Op = Op + "ty=" + MVT::getValueTypeString(M->getExtraValueType());
}
return Op;
}