summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr55027.c
blob: 05082b26b344d094f09982fb39ce38291e5355f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-Ofast -fdump-tree-optimized-raw" } */

typedef double v2df __attribute__ ((__vector_size__ (2 * sizeof (double))));

void f (v2df *x)
{
  *x = 0 + 1 * *x;
}

/* { dg-final { scan-tree-dump-not "gimple_assign" "optimized" } } */