blob: 79d62ad5058366171170c231e65b9462ec5571ec [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" }
#if __cplusplus < 201100L
#define NOTHROW throw()
#else
#define NOTHROW noexcept
#endif
struct A
{
A();
~A() NOTHROW;
};
void f()
{
A a[10] = { };
}
// { dg-final { scan-tree-dump-times "catch" 1 "gimple" } }