mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
R600/SI: Add pattern for logical or of i1 values.
24 more little piglits with radeonsi. NOTE: This is a candidate for the Mesa stable branch. Reviewed-by: Tom Stellard <thomas.stellard@amd.com> llvm-svn: 175886
This commit is contained in:
parent
a4a3540cbb
commit
3f8fef4e0e
@ -942,6 +942,10 @@ def : Pat <
|
||||
|
||||
def S_OR_B32 : SOP2_32 <0x00000010, "S_OR_B32", []>;
|
||||
def S_OR_B64 : SOP2_64 <0x00000011, "S_OR_B64", []>;
|
||||
def : Pat <
|
||||
(i1 (or SSrc_64:$src0, SSrc_64:$src1)),
|
||||
(S_OR_B64 SSrc_64:$src0, SSrc_64:$src1)
|
||||
>;
|
||||
def S_XOR_B32 : SOP2_32 <0x00000012, "S_XOR_B32", []>;
|
||||
def S_XOR_B64 : SOP2_64 <0x00000013, "S_XOR_B64", []>;
|
||||
def S_ANDN2_B32 : SOP2_32 <0x00000014, "S_ANDN2_B32", []>;
|
||||
|
Loading…
Reference in New Issue
Block a user