diff options
author | Vincent Lejeune <[email protected]> | 2012-10-08 15:34:36 +0200 |
---|---|---|
committer | Vincent Lejeune <[email protected]> | 2012-10-10 22:03:20 +0200 |
commit | 9a6bb3f645eec8ce9b04584f1bd8e76095f20a06 (patch) | |
tree | e4e29b1c940ef5c21d2c341764f1ae00fbb0325d /src/gallium/drivers/radeon/SIInstructions.td | |
parent | bfdf26892c2df430384d03ba356038df7853ffb9 (diff) |
radeon/llvm: use floor intrinsic instead of llvm.AMDIL.floor
Reviewed-by: Tom Stellard <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon/SIInstructions.td')
-rw-r--r-- | src/gallium/drivers/radeon/SIInstructions.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeon/SIInstructions.td b/src/gallium/drivers/radeon/SIInstructions.td index dcd2d1318a5..3dc0954a75d 100644 --- a/src/gallium/drivers/radeon/SIInstructions.td +++ b/src/gallium/drivers/radeon/SIInstructions.td @@ -541,7 +541,7 @@ defm V_RNDNE_F32 : VOP1_32 <0x00000023, "V_RNDNE_F32", [(set VReg_32:$dst, (frint AllReg_32:$src0))] >; defm V_FLOOR_F32 : VOP1_32 <0x00000024, "V_FLOOR_F32", - [(set VReg_32:$dst, (int_AMDGPU_floor AllReg_32:$src0))] + [(set VReg_32:$dst, (ffloor AllReg_32:$src0))] >; defm V_EXP_F32 : VOP1_32 <0x00000025, "V_EXP_F32", [(set VReg_32:$dst, (fexp2 AllReg_32:$src0))] |