re PR tree-optimization/88709 (Improve store-merging)
authorJakub Jelinek <jakub@redhat.com>
Fri, 10 May 2019 07:53:23 +0000 (09:53 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Fri, 10 May 2019 07:53:23 +0000 (09:53 +0200)
PR tree-optimization/88709
PR tree-optimization/90271
* gcc.dg/store_merging_29.c: Allow 4 stores to replace 6 stores on
arm*-*-*.

From-SVN: r271056

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/store_merging_29.c

index 477761e203e9825c48839e6c953d8da8c6f82c80..17cc3dfe191076a2ea491fdc5429f37402c0d010 100644 (file)
@@ -1,5 +1,10 @@
 2019-05-10  Jakub Jelinek  <jakub@redhat.com>
 
+       PR tree-optimization/88709
+       PR tree-optimization/90271
+       * gcc.dg/store_merging_29.c: Allow 4 stores to replace 6 stores on
+       arm*-*-*.
+
        PR pch/90326
        * g++.dg/pch/pr90326.C: New test.
        * g++.dg/pch/pr90326.Hs: New file.
index 52dd0f7c7b3cd04db10b23e55588ed5830d44ebf..777020fab5a12946e0bc68785394347ae06060ee 100644 (file)
@@ -2,8 +2,8 @@
 /* { dg-do run { target int32 } } */
 /* { dg-require-effective-target store_merge } */
 /* { dg-options "-O2 -fdump-tree-store-merging-details" } */
-/* { dg-final { scan-tree-dump "New sequence of 3 stores to replace old one of 6 stores" "store-merging" { target le } } } */
-/* { dg-final { scan-tree-dump "New sequence of \[34] stores to replace old one of 6 stores" "store-merging" { target be } } } */
+/* { dg-final { scan-tree-dump "New sequence of 3 stores to replace old one of 6 stores" "store-merging" { target { le && { ! arm*-*-* } } } } } */
+/* { dg-final { scan-tree-dump "New sequence of \[34] stores to replace old one of 6 stores" "store-merging" { target { be || { arm*-*-* } } } } } */
 
 struct T { char a[1024]; };