diff options
author | Dan Gohman <gohman@apple.com> | 2008-09-08 16:30:29 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-09-08 16:30:29 +0000 |
commit | e19bc1844f0ef7baabc565a58748edcae9ee719d (patch) | |
tree | 0e1befc3e303b608372859aac56277eb684ffbfa /llvm/lib/CodeGen | |
parent | f6ac018926d8d54b964521dfd5876eb4908aacd1 (diff) | |
download | bcm5719-llvm-e19bc1844f0ef7baabc565a58748edcae9ee719d.tar.gz bcm5719-llvm-e19bc1844f0ef7baabc565a58748edcae9ee719d.zip |
Fix the string for ISD::UDIVREM.
llvm-svn: 55917
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
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"; |