llvm-6502/test/CFrontend/2004-02-12-LargeAggregateCopy.c.tr

9 lines
156 B
Plaintext
Raw Normal View History

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