summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-09-08 16:30:29 +0000
committerDan Gohman <gohman@apple.com>2008-09-08 16:30:29 +0000
commite19bc1844f0ef7baabc565a58748edcae9ee719d (patch)
tree0e1befc3e303b608372859aac56277eb684ffbfa /llvm/lib
parentf6ac018926d8d54b964521dfd5876eb4908aacd1 (diff)
downloadbcm5719-llvm-e19bc1844f0ef7baabc565a58748edcae9ee719d.tar.gz
bcm5719-llvm-e19bc1844f0ef7baabc565a58748edcae9ee719d.zip
Fix the string for ISD::UDIVREM.
llvm-svn: 55917
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 3626081c73f..747c1400fcc 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -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";
OpenPOWER on IntegriCloud