[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
Evan Cheng
evan.cheng at apple.com
Thu Mar 2 23:01:20 PST 2006
Changes in directory llvm/include/llvm/CodeGen:
SelectionDAGNodes.h updated: 1.108 -> 1.109
---
Log message:
Add more vector NodeTypes: VSDIV, VUDIV, VAND, VOR, and VXOR.
---
Diffs of the changes: (+2 -1)
SelectionDAGNodes.h | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)
Index: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
diff -u llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.108 llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.109
--- llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.108 Fri Mar 3 00:42:32 2006
+++ llvm/include/llvm/CodeGen/SelectionDAGNodes.h Fri Mar 3 01:01:07 2006
@@ -147,7 +147,8 @@
// the elements. The order is count, type, op0, op1. All vector opcodes,
// including VLOAD and VConstant must currently have count and type as
// their 1st and 2nd arguments.
- VADD, VSUB, VMUL,
+ VADD, VSUB, VMUL, VSDIV, VUDIV,
+ VAND, VOR, VXOR,
// MULHU/MULHS - Multiply high - Multiply two integers of type iN, producing
// an unsigned/signed value of type i[2*n], then return the top part.
More information about the llvm-commits
mailing list