OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-dev/] [fsf-gcc-snapshot-1-mar-12/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [gcov/] [gcov-2.C] - Rev 783

Compare with Previous | Blame | View Log

/* Verify line coverage counts for simple member functions. */

/* { dg-options "-fprofile-arcs -ftest-coverage" } */
/* { dg-do run { target native } } */

class C {
public:
  C()
  {
    i = 0;                              /* count(1) */
  }
  ~C() {}
  void seti (int j)
  {
    i = j;                              /* count(1) */
  }
private:
  int i;
};

void foo()
{
  C c;                                  /* count(1) */
  c.seti (1);                           /* count(1) */
}

int main()
{
  foo();                                /* count(1) */
}

/* { dg-final { run-gcov gcov-2.C } } */

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.