Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.misc-tests / gcov-10b.c
blob148d779fdb354039e5e1886c34cfa83a8d840101
1 /* Test gcov block mode. */
3 /* { dg-options "-fprofile-arcs -ftest-coverage" } */
4 /* { dg-do run { target native } } */
6 int main ()
8 unsigned ix, jx = 0;
10 ix = 10; goto test; loop: ; if (ix & 1) jx++; test: ; if (ix--) goto loop; /* count(11) */
12 return jx != 5;
15 /* { dg-final { run-gcov { -a gcov-10b.c } } } */