forked from OSchip/llvm-project
Fix a failure to bit_convert from integer GPR to MMX register.
llvm-svn: 37611
This commit is contained in:
parent
658f2c4881
commit
cd9673e565
|
@ -394,6 +394,8 @@ X86TargetLowering::X86TargetLowering(TargetMachine &TM)
|
|||
setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Custom);
|
||||
setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Custom);
|
||||
setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Custom);
|
||||
|
||||
setOperationAction(ISD::BIT_CONVERT, MVT::i64, Expand);
|
||||
}
|
||||
|
||||
if (Subtarget->hasSSE1()) {
|
||||
|
|
Loading…
Reference in New Issue