rt_gccstream/gcc/testsuite/gcc.dg/nested-func-4.c

26 lines
346 B
C

/* { dg-do run } */
/* { dg-options "-pg" } */
/* { dg-options "-pg -static" { target hppa*-*-hpux* } } */
/* { dg-require-profiling "-pg" } */
extern void abort(void);
void foo(int i)
{
void bar(void)
{
if (i != 2)
abort ();
}
bar();
}
int main(void)
{
foo (2);
return 0;
}
/* { dg-final { cleanup-profile-file } } */