mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
R600/SI: Un-move pattern I forgot to remove in last commit
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217109 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c9cc488dfe
commit
fa2e31c394
@ -2503,6 +2503,11 @@ def : Pat <
|
|||||||
def : IMad24Pat<V_MAD_I32_I24>;
|
def : IMad24Pat<V_MAD_I32_I24>;
|
||||||
def : UMad24Pat<V_MAD_U32_U24>;
|
def : UMad24Pat<V_MAD_U32_U24>;
|
||||||
|
|
||||||
|
def : Pat <
|
||||||
|
(mul i32:$src0, i32:$src1),
|
||||||
|
(V_MUL_LO_I32 $src0, $src1)
|
||||||
|
>;
|
||||||
|
|
||||||
def : Pat <
|
def : Pat <
|
||||||
(mulhu i32:$src0, i32:$src1),
|
(mulhu i32:$src0, i32:$src1),
|
||||||
(V_MUL_HI_U32 $src0, $src1)
|
(V_MUL_HI_U32 $src0, $src1)
|
||||||
@ -2513,11 +2518,6 @@ def : Pat <
|
|||||||
(V_MUL_HI_I32 $src0, $src1)
|
(V_MUL_HI_I32 $src0, $src1)
|
||||||
>;
|
>;
|
||||||
|
|
||||||
def : Pat <
|
|
||||||
(mul i32:$src0, i32:$src1),
|
|
||||||
(V_MUL_LO_I32 $src0, $src1)
|
|
||||||
>;
|
|
||||||
|
|
||||||
def : Vop3ModPat<V_MAD_F32, VOP_F32_F32_F32_F32, AMDGPUmad>;
|
def : Vop3ModPat<V_MAD_F32, VOP_F32_F32_F32_F32, AMDGPUmad>;
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user