aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.7/libmudflap/testsuite/libmudflap.c/pass64-frag.c
blob: 856eec0fa7e01f4d10e7bec74c881e191507e765 (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 libmudflap/36397 */
/* { dg-do run } */
/* { dg-options "-O -fmudflap -fno-strict-aliasing -lmudflap" } */

struct A
{
  int a[2];
};

long long int x;

int __attribute__ ((noinline))
baz (long long int *x)
{
  return *x;
}

int __attribute__ ((noinline))
foo (int i)
{
  if (i > 10)
    return baz (&x);
  return ((struct A *) &x)->a[i];
}

int
main (void)
{
  if (sizeof (long long) == 2 * sizeof (int)
      && sizeof (long long) == sizeof (struct A))
    {
      struct A a = { .a[0] = 10, .a[1] = 20 };
      __builtin_memcpy (&x, &a, sizeof (x));
      if (foo (0) != 10 || foo (1) != 20)
        __builtin_abort ();
    }
  return 0;
}