diff options
Diffstat (limited to 'test/FrontendC/2004-02-12-LargeAggregateCopy.c')
-rw-r--r-- | test/FrontendC/2004-02-12-LargeAggregateCopy.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/FrontendC/2004-02-12-LargeAggregateCopy.c b/test/FrontendC/2004-02-12-LargeAggregateCopy.c deleted file mode 100644 index 93b7fe4..0000000 --- a/test/FrontendC/2004-02-12-LargeAggregateCopy.c +++ /dev/null @@ -1,8 +0,0 @@ -// RUN: %llvmgcc -xc %s -S -o - | grep llvm.memcpy - -struct X { int V[10000]; }; -struct X Global1, Global2; -void test() { - Global2 = Global1; -} - |