URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.misc-tests/] [gcov-10.c] - Rev 399
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test gcov block mode. */ /* { dg-options "-fprofile-arcs -ftest-coverage" } */ /* { dg-do run { target native } } */ int main () { unsigned ix, jx = 0; for (ix = 10; ix--;) if (ix & 1) jx++; /* count(11) */ return jx != 5; } /* { dg-final { run-gcov { -a gcov-10.c } } } */
Go to most recent revision | Compare with Previous | Blame | View Log