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 | a47916d3792b47ec60d5152471db48d50dd9bb35 (patch) | |
tree | a055770b4c57e38ce4998eb624519e7888538332 | |
parent | eb3db1cec2feff9701bf631423a691f138a367ce (diff) | |
download | external_llvm-a47916d3792b47ec60d5152471db48d50dd9bb35.zip external_llvm-a47916d3792b47ec60d5152471db48d50dd9bb35.tar.gz external_llvm-a47916d3792b47ec60d5152471db48d50dd9bb35.tar.bz2 |
Fix the string for ISD::UDIVREM.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55917 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 3626081..747c140 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/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"; |