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 | 844277fb1e4712ca9d2b98ed2dbe6139c900fb7c (patch) | |
| tree | 63040d8ece1608e465a4f98d036363988af470a4 /llvm/lib/CodeGen | |
| parent | 875def9b719ac1282e060478d589e3d05f0dc63b (diff) | |
| download | bcm5719-llvm-844277fb1e4712ca9d2b98ed2dbe6139c900fb7c.tar.gz bcm5719-llvm-844277fb1e4712ca9d2b98ed2dbe6139c900fb7c.zip | |
Print new operations.
llvm-svn: 19464
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index ef0b0769a06..1996880e4ba 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/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); | 

