blob: 30b035cfc5278344ecfd365f72f9a72246662153 [file] [log] [blame]
// 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" } }