mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
eb3cd5e822
llvm-svn: 51695
19 lines
229 B
C
19 lines
229 B
C
// 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;
|
|
}
|