match.pd (~x | x): Don't use tree_nop_conversion_p.
authorMarek Polacek <polacek@redhat.com>
Tue, 30 Jun 2015 16:36:44 +0000 (16:36 +0000)
committerMarek Polacek <mpolacek@gcc.gnu.org>
Tue, 30 Jun 2015 16:36:44 +0000 (16:36 +0000)
* 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

gcc/ChangeLog
gcc/match.pd
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/fold-ior-3.c [new file with mode: 0644]

index 3dabe907a4425d50b302efd3183875478573c5fb..92953b2f3f220cd8fe9c93dcc25f9f269e737abe 100644 (file)
@@ -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  <rguenther@suse.de>
 
        * fold-const.c (fold_binary_loc): Move ~x & ~y -> ~(x | y) and
index e6728f470969ebcb85396c2c108409288df39acd..74e42efd8071e9180d46086102ac60b5a4dbb5ef 100644 (file)
@@ -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
index 95a75e569ea3680e7979dcfdcb8cda164438a113..7b51e77b7f8e29c7b148e6ec8d063fb591b38946 100644 (file)
@@ -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 (file)
index 0000000..ed89ff9
--- /dev/null
@@ -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" } } */