llvm-6502/test/CFrontend/2004-02-12-LargeAggregateCopy.c
2008-05-21 14:48:24 +00:00

9 lines
156 B
C

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