URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [nested-func-4.c] - Rev 823
Go to most recent revision | Compare with Previous | Blame | View Log
/* { 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; }
Go to most recent revision | Compare with Previous | Blame | View Log