]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr55027.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr55027.c
CommitLineData
b72bdd90
MG
1/* { dg-do compile } */
2/* { dg-options "-Ofast -fdump-tree-optimized-raw" } */
3
4typedef double v2df __attribute__ ((__vector_size__ (2 * sizeof (double))));
5
6void f (v2df *x)
7{
8 *x = 0 + 1 * *x;
9}
10
11/* { dg-final { scan-tree-dump-not "gimple_assign" "optimized" } } */