xref: /aosp_15_r20/external/clang/test/CodeGen/2004-02-12-LargeAggregateCopy.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1  %s -emit-llvm -o - | FileCheck %s
2 
3 struct X { int V[10000]; };
4 struct X Global1, Global2;
test()5 void test() {
6   // CHECK: llvm.memcpy
7   Global2 = Global1;
8 }
9