diff options
author | Tom Stellard <[email protected]> | 2012-05-17 14:34:40 -0400 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-05-17 14:48:10 -0400 |
commit | ef8e66bc165ea2ef9987ab6406268ce195f74eb0 (patch) | |
tree | 75e345e0d3e81a13ee20ace403ca4afddad32db8 /src/gallium/drivers/radeon/SIInstructions.td | |
parent | d07473fcf4126c740802e6458452e82cc5c799ba (diff) |
radeon/llvm: Remove AMDIL MAD instruction defs
Diffstat (limited to 'src/gallium/drivers/radeon/SIInstructions.td')
-rw-r--r-- | src/gallium/drivers/radeon/SIInstructions.td | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/SIInstructions.td b/src/gallium/drivers/radeon/SIInstructions.td index c1c96999b0e..1818e472c60 100644 --- a/src/gallium/drivers/radeon/SIInstructions.td +++ b/src/gallium/drivers/radeon/SIInstructions.td @@ -964,4 +964,12 @@ def : Pat < /* XXX: We are using IEEE MUL, not the 0 * anything = 0 MUL, is this correct? */ def : POW_Common <V_LOG_F32_e32, V_EXP_F32_e32, V_MUL_F32_e32, VReg_32>; +/********** ================== **********/ +/********** VOP3 Patterns **********/ +/********** ================== **********/ + +def : Pat <(f32 (IL_mad AllReg_32:$src0, AllReg_32:$src1, AllReg_32:$src2)), + (V_MAD_LEGACY_F32 AllReg_32:$src0, AllReg_32:$src1, AllReg_32:$src2, + 0, 0, 0, 0)>; + } // End isSI predicate |