diff options
author | Tom Stellard <[email protected]> | 2012-05-17 13:05:07 -0400 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-05-17 14:48:09 -0400 |
commit | 9916f2d2af18a26f32efb85aff5c11e1b998e19c (patch) | |
tree | 1c6949b72993ac8fe786ba699b4de9d4170bcf7c /src/gallium/drivers/radeon/SIInstructions.td | |
parent | 91484de22dd5143cef5f2fe7786f96abfbc795c8 (diff) |
radeon/llvm: Remove AMDIL floating-point ADD instruction defs
Diffstat (limited to 'src/gallium/drivers/radeon/SIInstructions.td')
-rw-r--r-- | src/gallium/drivers/radeon/SIInstructions.td | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeon/SIInstructions.td b/src/gallium/drivers/radeon/SIInstructions.td index 4efc093e374..c1c96999b0e 100644 --- a/src/gallium/drivers/radeon/SIInstructions.td +++ b/src/gallium/drivers/radeon/SIInstructions.td @@ -590,7 +590,10 @@ def V_CNDMASK_B32 : VOP2_Helper < defm V_READLANE_B32 : VOP2_32 <0x00000001, "V_READLANE_B32", []>; defm V_WRITELANE_B32 : VOP2_32 <0x00000002, "V_WRITELANE_B32", []>; -defm V_ADD_F32 : VOP2_32 <0x00000003, "V_ADD_F32", [], AMDILInst.ADD_f32>; +defm V_ADD_F32 : VOP2_32 < + 0x00000003, "V_ADD_F32", + [(set VReg_32:$dst, (fadd AllReg_32:$src0, VReg_32:$src1))] +>; defm V_SUB_F32 : VOP2_32 <0x00000004, "V_SUB_F32", []>; defm V_SUBREV_F32 : VOP2_32 <0x00000005, "V_SUBREV_F32", []>; |