URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [eh/] [array1.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// Test that we have one EH cleanup region for the whole array
// rather than one for each element.
// { dg-options "-fdump-tree-gimple" }
struct A
{
A();
~A();
};
void f()
{
A a[10] = { };
}
// { dg-final { scan-tree-dump-times "catch" 1 "gimple" } }
// { dg-final { cleanup-tree-dump "gimple" } }
Go to most recent revision | Compare with Previous | Blame | View Log