blob: a45e37a30f4ef0f34c41c11f8327b0acd9f1577d [file] [log] [blame]
// RUN: clang -emit-llvm %s -o - | grep 'call.*llvm.memcpy'
struct x { int a[100]; };
void foo(struct x *P, struct x *Q) {
*P = *Q;
}