From 282c5cae89986a5722ef59f6787108bdd668289d Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 13 Jan 2005 17:59:10 +0000 Subject: [PATCH] Print new node. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19526 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 2b5604fec2a..2f5fdc37cd6 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -870,6 +870,7 @@ const char *SDNode::getOperationName() const { switch (getOpcode()) { default: return "<>"; case ISD::EntryToken: return "EntryToken"; + case ISD::TokenFactor: return "TokenFactor"; case ISD::Constant: return "Constant"; case ISD::ConstantFP: return "ConstantFP"; case ISD::GlobalAddress: return "GlobalAddress";