aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr91001.c
blob: 4b6a017c86054107476139701ca725a4e8412ed0 (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
/* PR middle-end/91001 */
/* PR middle-end/91105 */
/* PR middle-end/91106 */

struct __attribute__((packed)) S { short b; char c; };
struct T { short b, c, d; };
struct __attribute__((packed)) R { int b; char c; };
union __attribute__((aligned(128), transparent_union)) U { struct S c; } u;
union __attribute__((aligned(32), transparent_union)) V { struct T c; } v;
union __attribute__((aligned(32), transparent_union)) W { struct R c; } w;
void foo (union U);
void bar (union V);
void baz (union W);

void
qux (void)
{
  foo (u);
}

void
quux (void)
{
  bar (v);
}

void
corge (void)
{
  baz (w);
}