URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [gcov/] [gcov-7.C] - Rev 710
Go to most recent revision | Compare with Previous | Blame | View Log
/* Check that Exception handler specification is not
mapped to the curly braces below the function
declaration. */
/* { dg-options "-fprofile-arcs -ftest-coverage" } */
/* { dg-do run { target native } } */
struct foo
{
foo () throw (int)
{ /* count (-) */
throw (1);
}
};
int main ()
{
try
{
foo f;
}
catch ( ...)
{
return 0;
}
}
/* { dg-final { run-gcov gcov-7.C } } */
Go to most recent revision | Compare with Previous | Blame | View Log