diff options
author | Chris Lattner <sabre@nondot.org> | 2005-01-11 05:57:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-01-11 05:57:01 +0000 |
commit | 4c633e82f6041f452e451904ec0de670e7f143e4 (patch) | |
tree | 6afa3b2e0ba50bf81e537722c8c057c47265d6c8 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 7041ee35adecb864e3e8df490aa73b0605fbfb5a (diff) |
Print new operations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19464 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index ef0b0769a0..1996880e4b 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<SetCCSDNode>(this); |