* testsuite/libgomp.fortran/vla7.f90: Add -w to options.
[official-gcc.git] / gcc / testsuite / gcc.dg / nested-func-4.c
blob30826d885a6afafb39c4bc9836bdd812b71dcce3
1 /* { dg-do run } */
2 /* { dg-options "-pg" } */
3 /* { dg-options "-pg -static" { target hppa*-*-hpux* } } */
4 /* { dg-require-profiling "-pg" } */
6 extern void abort(void);
8 void foo(int i)
10 void bar(void)
12 if (i != 2)
13 abort ();
16 bar();
19 int main(void)
21 foo (2);
22 return 0;