aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr44988.c
blob: 317eafdf7c8e2a08608ae8526ec9384c6bc816d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
struct S
{
  int i;
};

extern void bar (struct S);

void
foo (void)
{
  int i = 0;
  bar (*(struct S *) &i);
}