aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/other/pr49912.C
blob: b8c3e5bedff759cf20d193b84c433bc948f0b998 (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
32
33
34
35
36
37
38
// PR rtl-optimization/49912
// { dg-do compile }
// { dg-require-effective-target freorder }
// { dg-options "-O -freorder-blocks-and-partition" }

int foo (int *);

struct S
{
  int *m1 ();
  S (int);
   ~S () { foo (m1 ()); }
};

template <int>
struct V
{
  S *v1;
  void m2 (const S &);
  S *base ();
};

template <int N>
void V<N>::m2 (const S &x)
{
  S a = x;
  S *l = base ();
  while (l)
    *v1 = *--l;
}

V<0> v;

void
foo ()
{
  v.m2 (0);
}