PR tree-optimization/86401
[official-gcc.git] / gcc / testsuite / c-c++-common / pr71574.c
blob320ae3853cddb709bd849c540af812a01383ab4e
1 /* PR c/71574 */
2 /* { dg-do compile } */
4 int fn1 (void);
5 int fn2 (void) __attribute__ ((alloc_align (fn1))); /* { dg-warning "parameter outside range" } */
6 int fn3 (void) __attribute__ ((alloc_size (fn1))); /* { dg-warning "parameter outside range" } */
7 int fn4 (void) __attribute__ ((assume_aligned (fn1))); /* { dg-warning "not integer constant" } */
8 int fn5 (char *, char *) __attribute__((nonnull (fn1))); /* { dg-error "nonnull argument has invalid operand" } */
9 int fn6 (const char *, ...) __attribute__ ((sentinel (fn1))); /* { dg-warning "not an integer constant" } */
11 typedef int __attribute__((vector_size (fn1))) v4si; /* { dg-warning "attribute ignored" } */
12 typedef int T __attribute__((aligned (fn1))); /* { dg-error "requested alignment is not" } */