diff options
author | Mehdi Amini <mehdi.amini@apple.com> | 2015-07-09 15:12:23 +0000 |
---|---|---|
committer | Mehdi Amini <mehdi.amini@apple.com> | 2015-07-09 15:12:23 +0000 |
commit | eaabc51e786b049b1c5172332e38958af0d7c72a (patch) | |
tree | 8ed08efeca3fe3c801fec13a3f4e29f598b0afa6 /llvm/lib/CodeGen | |
parent | d1b818bcf414dea158df3a3ab33e0d62da0aa0d8 (diff) | |
download | bcm5719-llvm-eaabc51e786b049b1c5172332e38958af0d7c72a.tar.gz bcm5719-llvm-eaabc51e786b049b1c5172332e38958af0d7c72a.zip |
Re-instate the EVT parameter to getScalarShiftAmountTy() for OOT user
A documentation for this function would be nice by the way.
From: Mehdi Amini <mehdi.amini@apple.com>
llvm-svn: 241807
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 3 | ||||
-rw-r--r-- | llvm/lib/CodeGen/TargetLoweringBase.cpp | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 673c46102db..86b73d35806 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -444,7 +444,8 @@ namespace { if (LHSTy.isVector()) return LHSTy; auto &DL = DAG.getDataLayout(); - return LegalTypes ? TLI.getScalarShiftAmountTy(DL) : TLI.getPointerTy(DL); + return LegalTypes ? TLI.getScalarShiftAmountTy(DL, LHSTy) + : TLI.getPointerTy(DL); } /// This method returns true if we are running before type legalization or diff --git a/llvm/lib/CodeGen/TargetLoweringBase.cpp b/llvm/lib/CodeGen/TargetLoweringBase.cpp index 2c7ca99410f..ecfd6593157 100644 --- a/llvm/lib/CodeGen/TargetLoweringBase.cpp +++ b/llvm/lib/CodeGen/TargetLoweringBase.cpp @@ -878,7 +878,8 @@ void TargetLoweringBase::initActions() { setOperationAction(ISD::DEBUGTRAP, MVT::Other, Expand); } -MVT TargetLoweringBase::getScalarShiftAmountTy(const DataLayout &DL) const { +MVT TargetLoweringBase::getScalarShiftAmountTy(const DataLayout &DL, + EVT) const { return MVT::getIntegerVT(8 * DL.getPointerSize(0)); } @@ -887,7 +888,7 @@ EVT TargetLoweringBase::getShiftAmountTy(EVT LHSTy, assert(LHSTy.isInteger() && "Shift amount is not an integer type!"); if (LHSTy.isVector()) return LHSTy; - return getScalarShiftAmountTy(DL); + return getScalarShiftAmountTy(DL, LHSTy); } /// canOpTrap - Returns true if the operation can trap for the value type. |