2007-05-29-UnionCopy.c   [plain text]


// 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;
}