blob: 6bd092977cdf3f42d1a514a34decae34d69d5d37 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-cfg" } */
double a;
void t()
{
a=1;
}
void t1(void);
void abort(void);
void q()
{
try {
t();
}
catch (...) {abort();}
}
/* We shouldnotice nothrow attribute. */
/* { dg-final { scan-tree-dump-times "exception" 0 "cfg"} } */