Print new operations.
authorChris Lattner <sabre@nondot.org>
Tue, 11 Jan 2005 05:57:01 +0000 (05:57 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 11 Jan 2005 05:57:01 +0000 (05:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19464 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAG.cpp

index ef0b0769a065ccc7f57da2abd462d3222e0ec0fc..1996880e4ba9d8ac08015101f493b17b61ab7412 100644 (file)
@@ -891,6 +891,9 @@ const char *SDNode::getOperationName() const {
   case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
   case ISD::EXTRACT_ELEMENT: return "extract_element";
   case ISD::BUILD_PAIR: return "build_pair";
+  case ISD::MEMSET:  return "memset";
+  case ISD::MEMCPY:  return "memcpy";
+  case ISD::MEMMOVE: return "memmove";
 
   case ISD::SETCC:
     const SetCCSDNode *SetCC = cast<SetCCSDNode>(this);