diff options
author | Hal Finkel <hfinkel@anl.gov> | 2015-08-31 20:42:38 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2015-08-31 20:42:38 +0000 |
commit | 2483f2060a185f2bcd42f835f161c9f06949f6a2 (patch) | |
tree | 7ca69d8c4eb0879da3ab9d6689794b65e8f7f1ed /llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | |
parent | d9a5c225d14dfa3c98bc81675edd2cea4caed03f (diff) | |
download | bcm5719-llvm-2483f2060a185f2bcd42f835f161c9f06949f6a2.tar.gz bcm5719-llvm-2483f2060a185f2bcd42f835f161c9f06949f6a2.zip |
[DAGCombine] Use getSetCCResultType utility function
DAGCombine has a utility wrapper around TLI's getSetCCResultType; use it in the
one place in DAGCombine still directly calling the TLI function. NFC.
llvm-svn: 246482
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 1cb12832884..cb08da7c911 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -8500,7 +8500,7 @@ SDValue DAGCombiner::visitFSQRT(SDNode *N) { // Unfortunately, RV is now NaN if the input was exactly 0. // Select out this case and force the answer to 0. SDValue Zero = DAG.getConstantFP(0.0, DL, VT); - EVT CCVT = TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT); + EVT CCVT = getSetCCResultType(VT); SDValue ZeroCmp = DAG.getSetCC(DL, CCVT, N->getOperand(0), Zero, ISD::SETEQ); AddToWorklist(ZeroCmp.getNode()); AddToWorklist(RV.getNode()); |