aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/attr-alloc_align-2.c
blob: 3dc7a219839c18ce52339516acf2050e9ba3bd94 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */

int i;
void *f1 (int) __attribute__((alloc_align (1)));
void *f2 (int, int, int) __attribute__((alloc_align (3)));
void *f3 (void) __attribute__((alloc_align)); /* { dg-error "wrong number of arguments specified" } */
void *f4 (int, int) __attribute__((alloc_align (1, 2))); /* { dg-error "wrong number of arguments specified" } */
void *f5 (void) __attribute__((alloc_align (i))); /* { dg-warning "outside range" } */
void *f6 (int) __attribute__((alloc_align (0))); /* { dg-warning "outside range" } */
void *f7 (int) __attribute__((alloc_align (2))); /* { dg-warning "outside range" } */