Fix file cache tunables documentation
[official-gcc.git] / gcc / testsuite / gcc.dg / qual-return-9.c
blobc247e2adb5c962c371c1e29ebd29a6132c0c0cc8
1 /* Test qualifiers on function return types in C23 (C23 version of
2 qual-return-5.c): those qualifiers are now ignored for all purposes,
3 including _Atomic. */
4 /* { dg-do compile } */
5 /* { dg-options "-std=c23 -pedantic-errors" } */
7 int f1 (void);
8 const int f1 (void);
9 volatile int f1 (void) { return 0; }
11 int *restrict f2 (void) { return 0; }
12 int *f2 (void);
14 const volatile long f3 (void);
15 long f3 (void);
17 const volatile void f4 (void) { }
18 void f4 (void);
20 _Atomic int f5 (void);
21 int f5 (void);
23 int f6 (void);
24 _Atomic int f6 (void) { return 0; }
26 /* The standard seems unclear regarding the case where restrict is
27 applied to a function return type that may not be
28 restrict-qualified; assume here that it is disallowed. */
29 restrict int f7 (void); /* { dg-error "restrict" } */
31 typedef void FT (void);
32 FT *restrict f8 (void); /* { dg-error "restrict" } */