PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / c99-restrict-1.c
bloba93b3e1de6d62a8b2ef824ad8c670bbd02ce5ba0
1 /* Test for restrict: in C99 only. */
2 /* Origin: Joseph Myers <jsm28@cam.ac.uk> */
3 /* { dg-do compile } */
4 /* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
6 char *restrict foo;
8 /* The following are constraint violations and should be rejected. */
10 int restrict bar; /* { dg-bogus "warning" "warning in place of error" } */
11 /* { dg-error "restrict" "restrict constraint violation" { target *-*-* } .-1 } */
13 typedef void (*fp) (void);
15 fp restrict baz; /* { dg-bogus "warning" "warning in place of error" } */
16 /* { dg-error "restrict" "restrict constraint violation" { target *-*-* } .-1 } */
18 void quux (int restrict a[3]); /* { dg-bogus "warning" "warning in place of error" } */
19 /* { dg-error "restrict" "restrict constraint violation" { target *-*-* } .-1 } */