Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / gcc.dg / parm-impl-decl-1.c
blobc1219273c7523d99aef26e1a32a4b257fdf19a30
1 /* Test implicit function declarations and other odd declarations in
2 function prototypes. Bug 18239. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-std=gnu89" } */
7 /* Implicit function declaration in attribute in definition (testcase
8 from bug). */
9 int
10 foo (int __attribute__ ((__mode__ (vector_size(8)))) i) /* { dg-warning "'mode' attribute ignored" } */
12 return (long long) i;
15 /* Various other cases. */
17 int f (int [sizeof(g())]);
18 int f1 (int [sizeof(g1())]);
20 int g () { return 1; }
22 int
23 h (int (*p)[sizeof(i())])
25 int g2 (), g3 ();
26 return (*p)[0] + g3() + g2();
29 int i () { return 2; }
31 int f2 (int [sizeof(g2())]);
32 int f3 (int [sizeof(g3())]);
33 int g3 () { return 4; }