forked from OSchip/llvm-project
R600: Don't set fp_round_inreg action.
There's no point in setting this since it seems to only by created in 1 place for ppcf128 llvm-svn: 211515
This commit is contained in:
parent
b8b5153935
commit
72573adbf2
|
@ -33,11 +33,6 @@ void AMDGPUTargetLowering::InitAMDILLowering() {
|
|||
MVT::v2i32
|
||||
};
|
||||
|
||||
static const MVT::SimpleValueType FloatTypes[] = {
|
||||
MVT::f32,
|
||||
MVT::f64
|
||||
};
|
||||
|
||||
static const MVT::SimpleValueType VectorTypes[] = {
|
||||
MVT::v4f32,
|
||||
MVT::v4i32,
|
||||
|
@ -57,10 +52,6 @@ void AMDGPUTargetLowering::InitAMDILLowering() {
|
|||
setOperationAction(ISD::BRIND, VT, Expand);
|
||||
}
|
||||
|
||||
for (MVT VT : FloatTypes) {
|
||||
setOperationAction(ISD::FP_ROUND_INREG, VT, Expand);
|
||||
}
|
||||
|
||||
for (MVT VT : VectorTypes) {
|
||||
setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
|
||||
setOperationAction(ISD::SELECT_CC, VT, Expand);
|
||||
|
|
Loading…
Reference in New Issue