X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.misc-tests%2Fgcov-2.c;fp=gcc%2Ftestsuite%2Fgcc.misc-tests%2Fgcov-2.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=aa3e4b74e9025bf95ed1ccecdd8f734d5153582b;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.misc-tests/gcov-2.c b/gcc/testsuite/gcc.misc-tests/gcov-2.c deleted file mode 100644 index aa3e4b74..00000000 --- a/gcc/testsuite/gcc.misc-tests/gcov-2.c +++ /dev/null @@ -1,22 +0,0 @@ -/* Test Gcov basics. */ - -/* { dg-options "-fprofile-arcs -ftest-coverage -g" } */ -/* { dg-do run { target native } } */ - -void noop () -{ -} - -int main () -{ - int i; - - for (i = 0; i < 10; i++) /* count(11) */ - noop (); /* count(10) */ - - return 0; /* count(1) */ -} - -int a_variable = 0; - -/* { dg-final { run-gcov gcov-2.c } } */