URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.misc-tests/] [gcov-13.c] - Rev 704
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test gcov weak ellision. */ /* { dg-options "-fprofile-arcs -ftest-coverage" } */ /* { dg-require-weak "" } */ /* { dg-do run { target native } } */ /* { dg-additional-sources "gcovpart-13b.c" } */ /* { dg-skip-if "weak ellision not supported" { { hppa*-*-hpux* } && { ! lp64 } } { "*" } { "" } } */ int __attribute__ ((weak)) weak () { return 1; /* count(-) { xfail *-*-* } */ } int main () { return weak (); /* count(1) */ } /* { dg-final { run-gcov { -a gcov-13.c } { xfail *-*-* } } } */ /* { dg-final { run-gcov { -a gcovpart-13b.c } } } */
Go to most recent revision | Compare with Previous | Blame | View Log