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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [gcov/] [gcov-4.C] - Rev 715

Go to most recent revision | Compare with Previous | Blame | View Log

/* Check that execution counts and branch probabilities for various C
   constructs are reported correctly by gcov. */

#include <stdio.h>

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

class foo {
public:
  foo() { printf("foo()\n"); };
  ~foo() { printf("~foo()\n"); };
  void method(void) { printf("method()\n"); }; 
};

int func(int i, int j) __attribute__((noinline));

int func(int i, int j){
  if (j) {
    printf("unreachable\n");
    return 3;
  }

  foo f;

  if (i == 1) {
    f.method();
    f.method();
  } else {
    f.method();
    printf("unreachable\n");
    return 2;        /* count(#####) */
  }
  f.method();
  return 0;
}

int main() {
  return func(1, 0);
}
/* { dg-final { run-gcov gcov-4.C } } */

Go to most recent revision | 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.