summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-07-10 01:55:33 +0000
committerChris Lattner <sabre@nondot.org>2005-07-10 01:55:33 +0000
commit5f056bf4b862a7c31388a68711dd3b3ed5de2be8 (patch)
treeb629f36a4cc07710741f9a4bfe876af15dc08eff /lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
parent9fadb4c1c0a6d223aa468f9f72f8c2562dc66839 (diff)
downloadllvm-5f056bf4b862a7c31388a68711dd3b3ed5de2be8.tar.gz
llvm-5f056bf4b862a7c31388a68711dd3b3ed5de2be8.tar.bz2
llvm-5f056bf4b862a7c31388a68711dd3b3ed5de2be8.tar.xz
Change *EXTLOAD to use an VTSDNode operand instead of being an MVTSDNode.
This is the last MVTSDNode. This allows us to eliminate a bunch of special case code for handling MVTSDNodes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22367 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
index 8d8e1fd366..d4c1dcd3b8 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
@@ -88,8 +88,6 @@ 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());
} else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(Node)) {
if (M->getValue())
Op += "<" + M->getValue()->getName() + ":" + itostr(M->getOffset()) + ">";