URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.misc-tests/] [gcov-15.c] - Rev 704
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test gcov multiple paths to file. */ /* { dg-options "-fprofile-arcs -ftest-coverage" } */ /* { dg-do run { target native } } */ #if !RECURSIVE #define RECURSIVE 1 #include "./gcov-15.c" #undef RECURSIVE #endif static void __attribute__ ((noinline)) Recursive (void); #if RECURSIVE static void __attribute__ ((noinline)) Recursive () { return; /* count(1) */ } #else int main () { Recursive (); /* count(1) */ return 0; } #endif /* { dg-final { run-gcov { -a gcov-15.c } } } */
Go to most recent revision | Compare with Previous | Blame | View Log