aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/opt/pr19317-3.C
blob: b2b2bb0e99cdbbe89a56920f141adfe00049bccf (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
// PR c++/19317
// { dg-options "-O2" }
// { dg-do run }

extern "C" void abort (void);

struct A { int c; int d; int e; int f; };

A
foo (const A *x, const A *r)
{
  A t;
  t.c = -1;
  t.c += x->c < r->c ? x->c : r->c;
  t.d = 0;
  t.e = 0;
  t.f = 0;
  return t;
}

int
main ()
{
  A a;
  a.c = 10;
  a.d = 0;
  a.e = 0;
  a.f = 0;
  A b;
  b.c = 100;
  b.d = 0;
  b.e = 0;
  b.f = 0;
  a = foo (&b, &a);
  if (a.c != 9)
    abort ();
}