From: Chris Lattner Date: Tue, 11 Jan 2005 05:57:01 +0000 (+0000) Subject: Print new operations. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=4c633e82f6041f452e451904ec0de670e7f143e4;p=oota-llvm.git Print new operations. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19464 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index ef0b0769a06..1996880e4ba 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -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(this);