[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp

Chris Lattner lattner at cs.uiuc.edu
Sat Apr 1 18:41:31 PST 2006



Changes in directory llvm/lib/CodeGen/SelectionDAG:

SelectionDAG.cpp updated: 1.293 -> 1.294
---
Log message:

Add some missing node names


---
Diffs of the changes:  (+9 -0)

 SelectionDAG.cpp |    9 +++++++++
 1 files changed, 9 insertions(+)


Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.293 llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.294
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.293	Thu Mar 30 20:06:56 2006
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp	Sat Apr  1 20:41:18 2006
@@ -2749,6 +2749,15 @@
   case ISD::VADD:   return "vadd";
   case ISD::VSUB:   return "vsub";
   case ISD::VMUL:   return "vmul";
+    
+  case ISD::VADD:   return "vadd";
+  case ISD::VSUB:   return "vsub";
+  case ISD::VMUL:   return "vmul";
+  case ISD::VSDIV:  return "vsdiv";
+  case ISD::VUDIV:  return "vudiv";
+  case ISD::VAND:   return "vand";
+  case ISD::VOR:    return "vor";
+  case ISD::VXOR:   return "vxor";
 
   case ISD::SETCC:       return "setcc";
   case ISD::SELECT:      return "select";






More information about the llvm-commits mailing list