blob: 95ab388c842fd7769076f10f43ccce0730bf4bd7 [file] [log] [blame]
// RUN: %llvmgcc -S -o - %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;
}