aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2007-05-29-UnionCopy.c
blob: ded67d4d6b283faa24df5737c043576f4fc4fed0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// RUN: %llvmgcc -S -o - -emit-llvm %s | grep memcpy
// PR1421

struct A {
  char c;
  int i;
};

struct B {
  int c;
  unsigned char x;
};

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

void check(union U *u, union U *v) {
  *u = *v;
}