No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / tree-ssa / nothrow-1.C
blob4bb71589de365fd04c6fa2ab36b78214d4c50b54
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-cfg" } */
3 /* { dg-skip-if "" { "*-*-*" } { "-fpic" "-fPIC" } { "" } } */
4 double a;
5 void t()
7         a=1;
9 void t1(void);
10 void abort(void);
12 void q()
14         try {
15                 t();
16         }
17         catch (...) {abort();}
19 /* We shouldnotice nothrow attribute.  */
20 /* { dg-final { scan-tree-dump-times "exception" 0 "cfg"} } */
21 /* { dg-final { cleanup-tree-dump "cfg" } } */