Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.other / debug2.C
blobf5f0a4f2e6b8be789026e561d75f67ec9df51b9a
1 // { dg-do assemble  }
2 // { dg-options "-funroll-loops -O2 -g" }
4 inline void f()
6   typedef int T;
9 inline void g()
11   typedef double U;
14 int n;
16 struct B
18   ~B() { 
19     for (int i = 0; i < n; ++i)
20       g(); 
21   }
24 struct D : public B {
25   ~D() { 
26     for (int j = 0; j < n; ++j)
27       f(); 
28   }
31 D d;