1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/CFrontend/2004-02-12-LargeAggregateCopy.c.tr
2007-01-17 07:59:14 +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;
}