PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / nested-func-4.c
blob36a8c405ce22a75b61bab9c88765f2c60623ba21
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;
25 /* { dg-final { cleanup-profile-file } } */