aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compat/struct-i.c
blob: 25cbee6071e76f1bb912c14e6bdfaefda86cb517 (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
39
40
41
42
43
44
45
46
typedef struct {int a;} T;

int h (T *);
T g (T);

#if COMPILER != 1
h (T *x)
{
  if (x->a != 47114711)
    abort ();
}
#endif

#if COMPILER != 2
T
g (T x)
{
  if (x.a != 13)
    abort ();
  x.a = 47114711;
  h (&x);
  return x;
}
#endif

#if COMPILER != 1
f ()
{
  T x;
  x.a = 13;
  g (x);
  if (x.a != 13)
    abort ();
  x = g (x);
  if (x.a != 47114711)
    abort ();
}
#endif

#if COMPILER != 2
main ()
{
  f ();
  exit (0);
}
#endif