[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
Nate Begeman
natebegeman at mac.com
Tue Apr 5 15:37:08 PDT 2005
Changes in directory llvm/include/llvm/CodeGen:
SelectionDAGNodes.h updated: 1.27 -> 1.28
---
Log message:
Add MULHU and MULHS nodes for the high part of an (un)signed 32x32=64b
multiply.
---
Diffs of the changes: (+1 -1)
SelectionDAGNodes.h | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
diff -u llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.27 llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.28
--- llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.27 Fri Apr 1 22:58:28 2005
+++ llvm/include/llvm/CodeGen/SelectionDAGNodes.h Tue Apr 5 17:36:56 2005
@@ -90,7 +90,7 @@
// Simple binary arithmetic operators.
- ADD, SUB, MUL, SDIV, UDIV, SREM, UREM,
+ ADD, SUB, MUL, MULHU, MULHS, SDIV, UDIV, SREM, UREM,
// Bitwise operators.
AND, OR, XOR, SHL, SRA, SRL,
More information about the llvm-commits
mailing list