summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2005-04-05 22:36:56 +0000
committerNate Begeman <natebegeman@mac.com>2005-04-05 22:36:56 +0000
commit1867054643c20c3027421ab7711664b4d55fe4c6 (patch)
tree2a7362b349c714127fc3b94b15a7c34301853d96 /include
parent2513ddc239143ad33cdf026548d9145245b26dcb (diff)
downloadllvm-1867054643c20c3027421ab7711664b4d55fe4c6.tar.gz
llvm-1867054643c20c3027421ab7711664b4d55fe4c6.tar.bz2
llvm-1867054643c20c3027421ab7711664b4d55fe4c6.tar.xz
Add MULHU and MULHS nodes for the high part of an (un)signed 32x32=64b
multiply. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21102 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/SelectionDAGNodes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h
index 568f66c9f6..cdb84eef47 100644
--- a/include/llvm/CodeGen/SelectionDAGNodes.h
+++ b/include/llvm/CodeGen/SelectionDAGNodes.h
@@ -90,7 +90,7 @@ namespace ISD {
// 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,