aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr99647.c
blob: 701155dd8565c2d79441ccb974795d8de25ea4a4 (plain)
1
2
3
4
5
/* { dg-do assemble } */
typedef int __attribute((vector_size(16))) V;
V f(void) {
  return (V){ (int)f, (int)f, (int)f, (int)f };
}