mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
R600: Remove unnecessary casts
Spotted by Bill Wendling. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188942 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
dfdf7f44a9
commit
5464a92861
@ -115,14 +115,13 @@ AMDGPUTargetLowering::AMDGPUTargetLowering(TargetMachine &TM) :
|
|||||||
setOperationAction(ISD::VSELECT, MVT::v2f32, Expand);
|
setOperationAction(ISD::VSELECT, MVT::v2f32, Expand);
|
||||||
setOperationAction(ISD::VSELECT, MVT::v4f32, Expand);
|
setOperationAction(ISD::VSELECT, MVT::v4f32, Expand);
|
||||||
|
|
||||||
static const int IntTypes[] = {
|
static const MVT::SimpleValueType IntTypes[] = {
|
||||||
(int)MVT::v2i32,
|
MVT::v2i32, MVT::v4i32
|
||||||
(int)MVT::v4i32
|
|
||||||
};
|
};
|
||||||
const size_t NumIntTypes = array_lengthof(IntTypes);
|
const size_t NumIntTypes = array_lengthof(IntTypes);
|
||||||
|
|
||||||
for (unsigned int x = 0; x < NumIntTypes; ++x) {
|
for (unsigned int x = 0; x < NumIntTypes; ++x) {
|
||||||
MVT::SimpleValueType VT = (MVT::SimpleValueType)IntTypes[x];
|
MVT::SimpleValueType VT = IntTypes[x];
|
||||||
//Expand the following operations for the current type by default
|
//Expand the following operations for the current type by default
|
||||||
setOperationAction(ISD::ADD, VT, Expand);
|
setOperationAction(ISD::ADD, VT, Expand);
|
||||||
setOperationAction(ISD::AND, VT, Expand);
|
setOperationAction(ISD::AND, VT, Expand);
|
||||||
@ -142,14 +141,13 @@ AMDGPUTargetLowering::AMDGPUTargetLowering(TargetMachine &TM) :
|
|||||||
setOperationAction(ISD::XOR, VT, Expand);
|
setOperationAction(ISD::XOR, VT, Expand);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const int FloatTypes[] = {
|
static const MVT::SimpleValueType FloatTypes[] = {
|
||||||
(int)MVT::v2f32,
|
MVT::v2f32, MVT::v4f32
|
||||||
(int)MVT::v4f32
|
|
||||||
};
|
};
|
||||||
const size_t NumFloatTypes = array_lengthof(FloatTypes);
|
const size_t NumFloatTypes = array_lengthof(FloatTypes);
|
||||||
|
|
||||||
for (unsigned int x = 0; x < NumFloatTypes; ++x) {
|
for (unsigned int x = 0; x < NumFloatTypes; ++x) {
|
||||||
MVT::SimpleValueType VT = (MVT::SimpleValueType)FloatTypes[x];
|
MVT::SimpleValueType VT = FloatTypes[x];
|
||||||
setOperationAction(ISD::FADD, VT, Expand);
|
setOperationAction(ISD::FADD, VT, Expand);
|
||||||
setOperationAction(ISD::FDIV, VT, Expand);
|
setOperationAction(ISD::FDIV, VT, Expand);
|
||||||
setOperationAction(ISD::FFLOOR, VT, Expand);
|
setOperationAction(ISD::FFLOOR, VT, Expand);
|
||||||
|
Loading…
Reference in New Issue
Block a user