git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42091 91177308-0d34-0410...
[oota-llvm.git] / test / CFrontend / 2004-02-12-LargeAggregateCopy.c.tr
1 // RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep llvm.memcpy
2
3 struct X { int V[10000]; };
4 struct X Global1, Global2;
5 void test() {
6   Global2 = Global1;
7 }
8