diff options
author | Dan Gohman <gohman@apple.com> | 2007-10-05 14:11:04 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-10-05 14:11:04 +0000 |
commit | ccd60799cdc9b75ddc971c02f0a1bf3bd7f48aba (patch) | |
tree | aeb56b34033bfc0fcee965610f77a8c308a18754 | |
parent | b6c7437568f0472548ede2710458f52cfad4532e (diff) | |
download | external_llvm-ccd60799cdc9b75ddc971c02f0a1bf3bd7f48aba.zip external_llvm-ccd60799cdc9b75ddc971c02f0a1bf3bd7f48aba.tar.gz external_llvm-ccd60799cdc9b75ddc971c02f0a1bf3bd7f48aba.tar.bz2 |
Provide names for MUL_LOHI and DIVREM operators.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42634 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 8e55850..1e76435 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -3571,6 +3571,10 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const { case ISD::UDIV: return "udiv"; case ISD::SREM: return "srem"; case ISD::UREM: return "urem"; + 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::AND: return "and"; case ISD::OR: return "or"; case ISD::XOR: return "xor"; |