forked from OSchip/llvm-project
R600/SI: Remove leftover pattern splitting 64-bit ors.
It's now matched to the scalar 64-bit or and split later if necessary.' llvm-svn: 205252
This commit is contained in:
parent
2daf9b165e
commit
d6c4326786
|
@ -2275,14 +2275,6 @@ def : Pat <
|
|||
(S_ADD_I32 $src0, $src1)
|
||||
>;
|
||||
|
||||
def : Pat <
|
||||
(or i64:$a, i64:$b),
|
||||
(INSERT_SUBREG
|
||||
(INSERT_SUBREG (IMPLICIT_DEF),
|
||||
(V_OR_B32_e32 (EXTRACT_SUBREG $a, sub0), (EXTRACT_SUBREG $b, sub0)), sub0),
|
||||
(V_OR_B32_e32 (EXTRACT_SUBREG $a, sub1), (EXTRACT_SUBREG $b, sub1)), sub1)
|
||||
>;
|
||||
|
||||
//============================================================================//
|
||||
// Miscellaneous Optimization Patterns
|
||||
//============================================================================//
|
||||
|
|
Loading…
Reference in New Issue