aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/opt/pr46864.C
blob: 0f7b7d2f5b4fb9190a4442dc8e4123e917ea2bf2 (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/46864
// { dg-do compile }
// { dg-options "-O -fnon-call-exceptions" }

int baz ();

struct S
{
  int k;
  bool bar () throw ()
  {
    int m = baz ();
    for (int i = 0; i < m; i++)
      k = i;
    return m;
  }
};

extern S *s;

void
foo ()
{
  while (baz () && s->bar ())
    ;
}