aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr108463.c
blob: 6e94e7daed9867f4cb605c3cd329c54b937c3f15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR rtl-optimization/108463 */
/* { dg-do compile } */
/* { dg-options "-O2 -fsched2-use-superblocks -fcompare-debug -Wno-psabi" } */

typedef int __attribute__((__vector_size__ (32))) V;
int a;

void
foo (V v)
{
  a--;
  v = (V) v;
}