forked from OSchip/llvm-project
PPC doesn't have bit converts to/from i64
llvm-svn: 28932
This commit is contained in:
parent
3b5873456e
commit
a07410c95b
|
@ -110,6 +110,8 @@ PPCTargetLowering::PPCTargetLowering(TargetMachine &TM)
|
|||
|
||||
setOperationAction(ISD::BIT_CONVERT, MVT::f32, Expand);
|
||||
setOperationAction(ISD::BIT_CONVERT, MVT::i32, Expand);
|
||||
setOperationAction(ISD::BIT_CONVERT, MVT::i64, Expand);
|
||||
setOperationAction(ISD::BIT_CONVERT, MVT::f64, Expand);
|
||||
|
||||
// PowerPC does not have truncstore for i1.
|
||||
setOperationAction(ISD::TRUNCSTORE, MVT::i1, Promote);
|
||||
|
|
Loading…
Reference in New Issue