mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Fix pr11193.
SHL inserts zeros from the right, thus even when the original sign_extend_inreg value was of 1-bit, we need to sra. llvm-svn: 142724
This commit is contained in:
parent
66327a8d0e
commit
7a79f94aad
@ -10146,9 +10146,6 @@ SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG)
|
||||
DAG.getConstant(SHLIntrinsicsID, MVT::i32),
|
||||
Node->getOperand(0), ShAmt);
|
||||
|
||||
// In case of 1 bit sext, no need to shr
|
||||
if (ExtraVT.getScalarType().getSizeInBits() == 1) return Tmp1;
|
||||
|
||||
return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
|
||||
DAG.getConstant(SRAIntrinsicsID, MVT::i32),
|
||||
Tmp1, ShAmt);
|
||||
|
@ -28,3 +28,18 @@ entry:
|
||||
store <2 x double> %1, <2 x double>* undef
|
||||
ret void
|
||||
}
|
||||
|
||||
; CHECK: mp_11193
|
||||
; CHECK: psraw $15
|
||||
; CHECK: ret
|
||||
define void @mp_11193(<8 x float> * nocapture %aFOO, <8 x float>* nocapture %RET)
|
||||
nounwind {
|
||||
allocas:
|
||||
%bincmp = fcmp olt <8 x float> <float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 9.000000e+00, float 1.000000e+00, float 9.000000e+00, float 1.000000e+00> , <float 3.000000e+00, float 3.000000e+00, float 3.000000e+00, float 3.000000e+00, float 3.000000e+00, float 3.000000e+00, float 3.000000e+00, float 3.000000e+00>
|
||||
%t = extractelement <8 x i1> %bincmp, i32 0
|
||||
%ft = sitofp i1 %t to float
|
||||
%pp = bitcast <8 x float>* %RET to float*
|
||||
store float %ft, float* %pp
|
||||
ret void
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user