blob: 93b7fe44bf60c62b5fa4c3e47b7c6f6ed2060e9e [file] [log] [blame]
// RUN: %llvmgcc -xc %s -S -o - | grep llvm.memcpy
struct X { int V[10000]; };
struct X Global1, Global2;
void test() {
Global2 = Global1;
}