summaryrefslogtreecommitdiff
path: root/test/FrontendC/2007-05-15-PaddingElement.c
blob: bad6a11dae81a51e8c2261566f90e89c034a9f49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// PR 1419

// RUN: %llvmgcc -xc  -O2 %s -S -o - | grep "ret i32 1"
struct A {
  short x;
  long long :0;
};

struct B {
  char a;
  char b;
  unsigned char i;
};

union X { struct A a; struct B b; };

int check(void) {
  union X x, y;

  y.b.i = 0xff;
  x = y;
  return (x.b.i == 0xff);
}