diff options
author | liuhongt <hongtao.liu@intel.com> | 2021-11-25 13:51:57 +0800 |
---|---|---|
committer | liuhongt <hongtao.liu@intel.com> | 2021-11-26 08:59:13 +0800 |
commit | 379be00f45f65e0e8de72a50553dd9d2bab6cc08 (patch) | |
tree | e3b116622e744244d8046588d967cf752cae441a /gcc | |
parent | 091ccc066d24b0356374e4fdacb4613062289508 (diff) | |
download | gcc-379be00f45f65e0e8de72a50553dd9d2bab6cc08.zip gcc-379be00f45f65e0e8de72a50553dd9d2bab6cc08.tar.gz gcc-379be00f45f65e0e8de72a50553dd9d2bab6cc08.tar.bz2 |
Fix typo in r12-5486.
gcc/ChangeLog:
PR middle-end/103419
* match.pd: Fix typo, use the type of second parameter, not
first one.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/match.pd | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/match.pd b/gcc/match.pd index fbb5a5a..e14f97e 100644 --- a/gcc/match.pd +++ b/gcc/match.pd @@ -4055,7 +4055,7 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT) } (if (ibit == ibit2 && ibit >= 0 - && TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (@2)))))) + && TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (@0)))))) (match (nop_atomic_bit_test_and_p @0 @1 @3) (bit_and (convert?@3 (SYNC_FETCH_OR_XOR_N @2 INTEGER_CST@0)) @@ -4066,21 +4066,21 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT) } (if (ibit == ibit2 && ibit >= 0 - && TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (@2)))))) + && TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (@0)))))) (match (nop_atomic_bit_test_and_p @0 @0 @4) (bit_and:c (convert1?@4 (ATOMIC_FETCH_OR_XOR_N @2 (nop_convert? (lshift@0 integer_onep@5 @6)) @3)) (convert2? @0)) - (if (TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (@2))))) + (if (TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (@0))))) (match (nop_atomic_bit_test_and_p @0 @0 @4) (bit_and:c (convert1?@4 (SYNC_FETCH_OR_XOR_N @2 (nop_convert? (lshift@0 integer_onep@3 @5)))) (convert2? @0)) - (if (TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (@2))))) + (if (TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (@0))))) (match (nop_atomic_bit_test_and_p @0 @1 @3) (bit_and@4 (convert?@3 (ATOMIC_FETCH_AND_N @2 INTEGER_CST@0 @5)) @@ -4092,7 +4092,7 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT) } (if (ibit == ibit2 && ibit >= 0 - && TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (@2)))))) + && TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (@0)))))) (match (nop_atomic_bit_test_and_p @0 @1 @3) (bit_and@4 @@ -4105,21 +4105,21 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT) } (if (ibit == ibit2 && ibit >= 0 - && TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (@2)))))) + && TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (@0)))))) (match (nop_atomic_bit_test_and_p @4 @0 @3) (bit_and:c (convert1?@3 (ATOMIC_FETCH_AND_N @2 (nop_convert?@4 (bit_not (lshift@0 integer_onep@6 @7))) @5)) (convert2? @0)) - (if (TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (@2))))) + (if (TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (@4))))) (match (nop_atomic_bit_test_and_p @4 @0 @3) (bit_and:c (convert1?@3 (SYNC_FETCH_AND_AND_N @2 (nop_convert?@4 (bit_not (lshift@0 integer_onep@6 @7))))) (convert2? @0)) - (if (TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (@2))))) + (if (TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (@4))))) #endif |