1 /* Like parm-impl-decl-1.c, but with -g. PR 43381. */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
3 /* { dg-do compile } */
4 /* { dg-options "-g" } */
7 foo (int __attribute__ ((__mode__ (vector_size(8)))) i
) /* { dg-warning "'__mode__' attribute ignored" } */
12 int f (int [sizeof(g())]);
13 int f1 (int [sizeof(g1())]);
15 int g () { return 1; }
18 h (int (*p
)[sizeof(i())])
21 return (*p
)[0] + g3() + g2();
24 int i () { return 2; }
26 int f2 (int [sizeof(g2())]);
27 int f3 (int [sizeof(g3())]);
28 int g3 () { return 4; }