xref: /aosp_15_r20/external/clang/test/CodeGen/struct-copy.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -emit-llvm %s -o - | grep 'call.*llvm.memcpy'
2 struct x { int a[100]; };
3 
4 
foo(struct x * P,struct x * Q)5 void foo(struct x *P, struct x *Q) {
6   *P = *Q;
7 }
8