PR tree-optimization/92128 - fold more non-constant strlen relational expressions
authorMartin Sebor <msebor@redhat.com>
Wed, 19 Feb 2020 23:54:50 +0000 (16:54 -0700)
committerMartin Sebor <msebor@redhat.com>
Wed, 19 Feb 2020 23:54:50 +0000 (16:54 -0700)
gcc/testsuite/ChangeLog:
* gcc.dg/strlenopt-81.c: Align arrays to let strictly aligned targets
optimize away calls as expected.

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/strlenopt-81.c

index ec3c34a2a3094603c3b37fd711120d99c5644917..049c343fe43cd5d84d939be966f44f8e78cf11b4 100644 (file)
@@ -1,3 +1,9 @@
+2020-02-19  Martin Sebor  <msebor@redhat.com>
+
+       PR tree-optimization/92128
+       * gcc.dg/strlenopt-81.c: Align arrays to let strictly aligned targets
+       optimize away calls as expected.
+
 2020-02-19  Uroš Bizjak  <ubizjak@gmail.com>
 
        * gcc.dg/gimplefe-41.c: Add -msse2 additional options for x86 targets.
index 95ac29aa71f06e314fe7b2bb1eb15bd0c0543627..f493514cfcc4a5970af553dad8960b6fa3654abf 100644 (file)
@@ -1,6 +1,6 @@
-/* PR tree-optimization/ - fold strlen relational expressions
+/* PR tree-optimization/91996 - fold non-constant strlen relational expressions
    { dg-do run }
-   { dg-options "-O2 -Wall -Wno-unused-local-typedefs -fdump-tree-optimized" } */
+   { dg-options "-O2 -Wall -Wno-unused-local-typedefs" } */
 
 typedef __SIZE_TYPE__ size_t;
 
@@ -17,7 +17,10 @@ typedef __SIZE_TYPE__ size_t;
     CAT (CAT (test_on_line_, __LINE__), _not_eliminated)();            \
   } typedef void dummy_type
 
-char a[32], b[32];
+
+/* Set the alignment for targets that depend on it in order to
+   optimize away the ELIM calls.  See pr92128.  */
+__attribute__ ((aligned(4))) char a[32], b[32];
 
 void init (void)
 {
@@ -89,7 +92,9 @@ NOIPA void test_local_cpy_4 (void)
   size_t blen = __builtin_strlen (b);
   if (blen < 9) return;
 
-  char a[10] = "abcdefgh";
+/* Set the alignment for targets that depend on it in order to
+   optimize away the ELIM calls.  See pr92128.  */
+  __attribute__ ((aligned(4))) char a[10] = "abcdefgh";
   char *d = a;
   __builtin_memcpy (d, b, 4);