summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr25559.c
blob: a8bce657b1c27caf68c08ed27761c98a8788b2af (plain)
1
2
3
4
5
6
7
8
9
10
/* PR c/25559 */
/* { dg-do compile } */

#define vs(n) __attribute__((vector_size (n)))
int vs (-1) a;			/* { dg-error ".vector_size. attribute argument value '-1' is negative" } */
int vs (0) b;			/* { dg-error "zero vector size" } */
int vs (1) c;			/* { dg-error "multiple of component size" } */
int vs (sizeof (int) / 2) d;	/* { dg-error "multiple of component size" } */
int vs (sizeof (int)) e;
int vs (sizeof (int) * 2) f;