Provide names for MUL_LOHI and DIVREM operators.
authorDan Gohman <gohman@apple.com>
Fri, 5 Oct 2007 14:11:04 +0000 (14:11 +0000)
committerDan Gohman <gohman@apple.com>
Fri, 5 Oct 2007 14:11:04 +0000 (14:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42634 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAG.cpp

index 8e55850b1ab6d5dc761bfcb9ecb90108c47ef37f..1e76435b07bbf85d2687bb2db9209ec821fa2709 100644 (file)
@@ -3571,6 +3571,10 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const {
   case ISD::UDIV:   return "udiv";
   case ISD::SREM:   return "srem";
   case ISD::UREM:   return "urem";
+  case ISD::SMUL_LOHI:  return "smul_lohi";
+  case ISD::UMUL_LOHI:  return "umul_lohi";
+  case ISD::SDIVREM:    return "sdivrem";
+  case ISD::UDIVREM:    return "divrem";
   case ISD::AND:    return "and";
   case ISD::OR:     return "or";
   case ISD::XOR:    return "xor";