llvm-6502/test/CFrontend/2004-02-12-LargeAggregateCopy.c.tr
2004-02-12 21:06:52 +00:00

9 lines
156 B
Plaintext

// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep llvm.memcpy
struct X { int V[10000]; };
struct X Global1, Global2;
void test() {
Global2 = Global1;
}