mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-04 21:30:49 +00:00
Operations should be custom lowered only if their type is legal.
Test: CellSPU/v2i32.ll when running with -promote-elements git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141074 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e97728ecf8
commit
e8783096d2
@ -423,12 +423,14 @@ SPUTargetLowering::SPUTargetLowering(SPUTargetMachine &TM)
|
|||||||
|
|
||||||
// Custom lower build_vector, constant pool spills, insert and
|
// Custom lower build_vector, constant pool spills, insert and
|
||||||
// extract vector elements:
|
// extract vector elements:
|
||||||
setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
|
if (isTypeLegal(VT)) {
|
||||||
setOperationAction(ISD::ConstantPool, VT, Custom);
|
setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
|
||||||
setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
|
setOperationAction(ISD::ConstantPool, VT, Custom);
|
||||||
setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
|
setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
|
||||||
setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
|
setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
|
||||||
setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
|
setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
|
||||||
|
setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
setOperationAction(ISD::AND, MVT::v16i8, Custom);
|
setOperationAction(ISD::AND, MVT::v16i8, Custom);
|
||||||
|
Loading…
Reference in New Issue
Block a user