Fix the string for ISD::UDIVREM.
authorDan Gohman <gohman@apple.com>
Mon, 8 Sep 2008 16:30:29 +0000 (16:30 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 8 Sep 2008 16:30:29 +0000 (16:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55917 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAG.cpp

index 3626081c73fd2c1b588d7ea746d9f03a68484e40..747c1400fcc71935001c9b3e72f4735e970476f3 100644 (file)
@@ -4933,7 +4933,7 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const {
   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::UDIVREM:    return "udivrem";
   case ISD::AND:    return "and";
   case ISD::OR:     return "or";
   case ISD::XOR:    return "xor";