Move scanning pass of forwprop-19.c to dse1 for r13-3212-gb88adba751da63

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.
This commit is contained in:
Liwei Xu 2022-10-17 11:08:55 +08:00 committed by liuhongt
parent 0205fbb91b
commit 35106383c0

View 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" } } */