Add MULHU and MULHS nodes for the high part of an (un)signed 32x32=64b
[oota-llvm.git] / lib / CodeGen / SelectionDAG / SelectionDAG.cpp
index 105d39d1fa59e68bb3f3596cafd1097e97f7f232..858b8ddab8eb7534e564f26e165726246c972377 100644 (file)
@@ -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";