aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
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 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp
parent2513ddc239143ad33cdf026548d9145245b26dcb (diff)
downloadexternal_llvm-1867054643c20c3027421ab7711664b4d55fe4c6.tar.gz
external_llvm-1867054643c20c3027421ab7711664b4d55fe4c6.tar.bz2
external_llvm-1867054643c20c3027421ab7711664b4d55fe4c6.zip
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 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAG.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 105d39d1fa..858b8ddab8 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -1130,6 +1130,8 @@ const char *SDNode::getOperationName() const {
case ISD::ADD: return "add";
case ISD::SUB: return "sub";
case ISD::MUL: return "mul";
+ case ISD::MULHU: return "mulhu";
+ case ISD::MULHS: return "mulhs";
case ISD::SDIV: return "sdiv";
case ISD::UDIV: return "udiv";
case ISD::SREM: return "srem";