URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [pr39834.c] - Rev 688
Compare with Previous | Blame | View Log
/* { dg-options "-O1 -Winline" } */ void quit_mined (); void bottom_line (); typedef enum { False, True } FLAG; inline void nextfile (FLAG exitiflast) { if (exitiflast) quit_mined (); else bottom_line (); nextfile (True); }