blob: 6f3b6643f09a5d95e2687ff5f85843555a27f3cd [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm %s -o - | grep 'call.*llvm.memcpy'
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00002struct x { int a[100]; };
3
4
5void foo(struct x *P, struct x *Q) {
6 *P = *Q;
7}