summaryrefslogtreecommitdiff
path: root/test/FrontendC/2004-02-12-LargeAggregateCopy.c
blob: 93b7fe44bf60c62b5fa4c3e47b7c6f6ed2060e9e (plain)
1
2
3
4
5
6
7
8
// RUN: %llvmgcc -xc %s -S -o - | grep llvm.memcpy

struct X { int V[10000]; };
struct X Global1, Global2;
void test() {
  Global2 = Global1;
}