OSDN Git Service

* rtl.h (insns_safe_to_move_p): New function.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.eh / crash1.C
1 // Build don't link:
2 // Special g++ Options: -O1 -fno-inline-functions
3
4 struct A
5 {
6   ~A ();
7 };
8
9 bool foo ();
10
11 int i;
12 int j;
13
14 A bar ()
15 {
16   for (i = 0; i < 1; ++i)
17     if (j)
18       {
19         A tmp;
20         return tmp;
21       }
22 }