From: Marek Polacek Date: Tue, 30 Jun 2015 16:36:44 +0000 (+0000) Subject: match.pd (~x | x): Don't use tree_nop_conversion_p. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3db55b2b6d83f9d3406af133e42db688b9379395;p=gcc.git match.pd (~x | x): Don't use tree_nop_conversion_p. * match.pd (~x | x): Don't use tree_nop_conversion_p. Build the final expression with the operand's type and then convert it to the type of the expression. * gcc.dg/fold-ior-3.c: New test. From-SVN: r225196 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3dabe907a44..92953b2f3f2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -3,6 +3,10 @@ * match.pd (X - (X / Y) * Y): Use convert1 and convert2. Convert both operands of the resulting expression. + * match.pd (~x | x): Don't use tree_nop_conversion_p. Build + the final expression with the operand's type and then convert + it to the type of the expression. + 2015-06-30 Richard Biener * fold-const.c (fold_binary_loc): Move ~x & ~y -> ~(x | y) and diff --git a/gcc/match.pd b/gcc/match.pd index e6728f47096..74e42efd807 100644 --- a/gcc/match.pd +++ b/gcc/match.pd @@ -286,8 +286,7 @@ along with GCC; see the file COPYING3. If not see /* ~x | x -> -1 */ (simplify (bit_ior:c (convert? @0) (convert? (bit_not @0))) - (if (tree_nop_conversion_p (type, TREE_TYPE (@0))) - { build_all_ones_cst (type); })) + (convert { build_all_ones_cst (TREE_TYPE (@0)); })) /* x ^ x -> 0 */ (simplify diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 95a75e569ea..7b51e77b7f8 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -2,6 +2,8 @@ * gcc.dg/fold-minus-6.c: New test. + * gcc.dg/fold-ior-3.c: New test. + 2015-06-30 Edward Smith-Rowland <3dw4rd@verizon.net> Implement N4197 - Adding u8 character literals diff --git a/gcc/testsuite/gcc.dg/fold-ior-3.c b/gcc/testsuite/gcc.dg/fold-ior-3.c new file mode 100644 index 00000000000..ed89ff9188c --- /dev/null +++ b/gcc/testsuite/gcc.dg/fold-ior-3.c @@ -0,0 +1,35 @@ +/* { dg-do compile } */ +/* { dg-options "-O -fdump-tree-cddce1" } */ + +int +fn1 (_Bool a) +{ + return ((int) a) | ((int) ~a); +} + +int +fn2 (unsigned char a) +{ + return ((int) a) | ((int) ~a); +} + +int +fn3 (unsigned short a) +{ + return ((int) a) | ((int) ~a); +} + +int +fn4 (signed char a) +{ + return ((int) a) | ((int) ~a); +} + +int +fn5 (signed short a) +{ + return ((int) a) | ((int) ~a); +} + +/* { dg-final { scan-tree-dump-not "~" "cddce1" } } */ +/* { dg-final { scan-tree-dump-not " \\| " "cddce1" } } */