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