]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Move scanning pass of forwprop-19.c to dse1 for r13-3212-gb88adba751da63
authorLiwei Xu <liwei.xu@intel.com>
Mon, 17 Oct 2022 03:08:55 +0000 (11:08 +0800)
committerliuhongt <hongtao.liu@intel.com>
Tue, 18 Oct 2022 04:46:15 +0000 (12:46 +0800)
gcc/testsuite/ChangeLog:

PR testsuite/107220
* gcc.dg/tree-ssa/forwprop-19.c: Move scanning pass from
forwprop1 to dse1, This fixs the test case fail.

gcc/testsuite/gcc.dg/tree-ssa/forwprop-19.c

index 4d77138b2065fc1155fc9987ccce51a891fd0261..6ca81cb6c49d4c50f25814bc4ece264c9d8cf694 100644 (file)
@@ -1,5 +1,5 @@
 /* { dg-do compile } */
-/* { dg-options "-O -fdump-tree-forwprop1" } */
+/* { dg-options "-O -fdump-tree-dse1" } */
 
 typedef int vec __attribute__((vector_size (4 * sizeof (int))));
 void f (vec *x1, vec *x2)
@@ -11,4 +11,4 @@ void f (vec *x1, vec *x2)
   *x1 = z;
 }
 
-/* { dg-final { scan-tree-dump-not "VEC_PERM_EXPR" "forwprop1" } } */
+/* { dg-final { scan-tree-dump-not "VEC_PERM_EXPR" "dse1" } } */