[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
Chris Lattner
lattner at cs.uiuc.edu
Mon Jan 10 21:57:43 PST 2005
Changes in directory llvm/lib/CodeGen/SelectionDAG:
SelectionDAG.cpp updated: 1.25 -> 1.26
---
Log message:
Print new operations.
---
Diffs of the changes: (+3 -0)
Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.25 llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.26
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.25 Mon Jan 10 22:25:13 2005
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp Mon Jan 10 23:57:01 2005
@@ -891,6 +891,9 @@
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);
More information about the llvm-commits
mailing list