diff options
author | Craig Topper <craig.topper@intel.com> | 2019-09-09 17:54:44 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2019-09-09 17:54:44 +0000 |
commit | 5ebd0a6e88a5c70805ec5077289e602c8e16a83f (patch) | |
tree | b1d96964d0b8c1e97e0ef24701e0007bb708c229 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | |
parent | ce2cb0f09e7d66f34e5f2110bfcd9e3dff60feaa (diff) | |
download | bcm5719-llvm-5ebd0a6e88a5c70805ec5077289e602c8e16a83f.tar.gz bcm5719-llvm-5ebd0a6e88a5c70805ec5077289e602c8e16a83f.zip |
[SelectionDAG] Remove ISD::FP_ROUND_INREG
I don't think anything in tree creates this node. So all of this
code appears to be dead.
Code coverage agrees
http://lab.llvm.org:8080/coverage/coverage-reports/llvm/coverage/Users/buildslave/jenkins/workspace/clang-stage2-coverage-R/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp.html
Differential Revision: https://reviews.llvm.org/D67312
llvm-svn: 371431
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp index 1952136eed9..003dbb233b3 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp @@ -319,7 +319,6 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const { case ISD::FP_ROUND: return "fp_round"; case ISD::STRICT_FP_ROUND: return "strict_fp_round"; case ISD::FLT_ROUNDS_: return "flt_rounds"; - case ISD::FP_ROUND_INREG: return "fp_round_inreg"; case ISD::FP_EXTEND: return "fp_extend"; case ISD::STRICT_FP_EXTEND: return "strict_fp_extend"; |