OSDN Git Service

Change to invoke gcov and clean up.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.misc-tests / gcov-2.c
1 /* Test Gcov basics.  */
2
3 /* { dg-options "-fprofile-arcs -ftest-coverage -g" } */
4 /* { dg-do run { target native } } */
5
6 void noop ()
7 {
8 }
9
10 int main ()
11 {
12   int i;
13
14   for (i = 0; i < 10; i++)      /* count(11) */
15     noop ();                    /* count(10) */
16
17   return 0;                     /* count(1) */
18 }
19
20 int a_variable = 0;
21
22 /* { dg-final { run-gcov gcov-2.c } } */