aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/opt/pr59622-5.C
blob: bcb2591a64c042c2aba2dfed945c0e7dea139fe9 (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
// PR tree-optimization/59622
// { dg-do compile }
// { dg-options "-O2" }

namespace
{
  struct A
  {
    A () {}
    virtual A *bar (int);
    A *baz (int x) { return bar (x); }
  };

  __attribute__((noreturn)) A *A::bar (int)
  {
    __builtin_exit (0);
  }
}

A *a;

void
foo ()
{
  a->baz (0);
}