OSDN Git Service

testcase for recent unroll.c fix
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.mike / eh59.C
1 // Special g++ Options: -O -funroll-loops
2
3 struct A {
4   ~A();
5 };
6
7 void foo();
8
9 int main() {
10   for (int i=0;i<4;i++) {
11     A a;
12     foo();
13   }
14 }
15
16 void foo() { }
17 A::~A() { }