re PR testsuite/78256 (test case gcc.dg/pr35691-1.c fails starting with its introduct...
authorPrathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
Wed, 9 Nov 2016 09:46:13 +0000 (09:46 +0000)
committerPrathamesh Kulkarni <prathamesh3492@gcc.gnu.org>
Wed, 9 Nov 2016 09:46:13 +0000 (09:46 +0000)
2016-11-09  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>

PR middle-end/78256
testsuite/
* gcc.dg/pr35691-1.c (foo): Use & instead of &&.
* gcc.dg/pr35691-2.c (foo): Use | instead of ||.

From-SVN: r241994

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr35691-1.c
gcc/testsuite/gcc.dg/pr35691-2.c

index 43586a91430829ce733398d6efb8a7fe88755991..a7e0250e0c4b4394fee948f46acb896d4e1eb106 100644 (file)
@@ -1,3 +1,9 @@
+2016-11-09  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
+
+       PR middle-end/78256
+       * gcc.dg/pr35691-1.c (foo): Use & instead of &&.
+       * gcc.dg/pr35691-2.c (foo): Use | instead of ||.
+
 2016-11-09  Janus Weil  <janus@gcc.gnu.org>
 
        PR fortran/71894
index 5211f815c5303de64640460cbb619355aa363eea..125923dd24cdea979b2baaf7a6bf426f0a85051a 100644 (file)
@@ -5,7 +5,7 @@ int foo(int z0, unsigned z1)
 {
   int t0 = (z0 == 0);
   int t1 = (z1 == 0);
-  int t2 = (t0 && t1);
+  int t2 = (t0 & t1);
   return t2;
 }
 
index 90cbf6dccdd425e410ff094df1032615263a4ff2..70f68a685d789235d63615bda49467f9e543a4f2 100644 (file)
@@ -5,7 +5,7 @@ int foo(int z0, unsigned z1)
 {
   int t0 = (z0 != 0);
   int t1 = (z1 != 0);
-  int t2 = (t0 || t1);
+  int t2 = (t0 | t1);
   return t2;
 }