diff options
author | Craig Topper <craig.topper@intel.com> | 2018-02-11 04:58:58 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2018-02-11 04:58:58 +0000 |
commit | 36f913ee80d94152802ba72384a979ef20e0780a (patch) | |
tree | a18ea196ef5e0a4adcd47e0457f238fcddb9aaa4 /llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | |
parent | ba5ad55965bd7e67b4477cd7e0a4dda21fba6510 (diff) | |
download | bcm5719-llvm-36f913ee80d94152802ba72384a979ef20e0780a.tar.gz bcm5719-llvm-36f913ee80d94152802ba72384a979ef20e0780a.zip |
[SelectionDAG] Remove TargetLowering::getConstTrueVal. Use SelectionDAG::getBoolConstant in the one place it was used.
SelectionDAG::getBoolConstant was recently introduced. At the time I didn't know getConstTrueVal existed, but I think getBoolConstant is better as it will use the source VT to make sure it can properly detect floating point if it is configured differently.
llvm-svn: 324832
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 9e7afed403d..cdefa30ef4f 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -7691,8 +7691,9 @@ SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) { // If the type of the setcc is larger (say, i8) then the value of the high // bit depends on getBooleanContents(), so ask TLI for a real "true" value // of the appropriate width. - SDValue ExtTrueVal = (SetCCWidth == 1) ? DAG.getAllOnesConstant(DL, VT) - : TLI.getConstTrueVal(DAG, VT, DL); + SDValue ExtTrueVal = (SetCCWidth == 1) + ? DAG.getAllOnesConstant(DL, VT) + : DAG.getBoolConstant(true, DL, VT, N00VT); SDValue Zero = DAG.getConstant(0, DL, VT); if (SDValue SCC = SimplifySelectCC(DL, N00, N01, ExtTrueVal, Zero, CC, true)) |