summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/debug2.C
blob: f5f0a4f2e6b8be789026e561d75f67ec9df51b9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// { dg-do assemble  }
// { dg-options "-funroll-loops -O2 -g" }

inline void f()
{
  typedef int T;
}

inline void g()
{
  typedef double U;
}

int n;

struct B
{
  ~B() { 
    for (int i = 0; i < n; ++i)
      g(); 
  }
};

struct D : public B {
  ~D() { 
    for (int j = 0; j < n; ++j)
      f(); 
  }
};

D d;