1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 12:02:58 +02:00

Fix the string for ISD::UDIVREM.

llvm-svn: 55917
This commit is contained in:
Dan Gohman 2008-09-08 16:30:29 +00:00
parent 84924c9ceb
commit afe7e3f3b1

View 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";