Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.dg / Wnonnull-7.c
blobe7b331a904c0fe35d20fb85f6a9f5b41e67ec433
1 /* PR middle-end/101216 - spurious notes for function calls
2 { dg-do compile }
3 { dg-options "-O2 -w" } */
5 __attribute__ ((access (write_only, 1, 2))) char*
6 getcwd (char *, __SIZE_TYPE__);
8 char* f (void)
10 char a[8];
11 return getcwd (0, 8);
14 /* Expect no messages of any kind on output.
15 { dg-bogus "" "" { target *-*-* } 0 } */