blob: a45e37a30f4ef0f34c41c11f8327b0acd9f1577d [file] [log] [blame]
Chris Lattnerca4fc2c2009-02-28 18:18:58 +00001// RUN: clang -emit-llvm %s -o - | grep 'call.*llvm.memcpy'
2struct x { int a[100]; };
3
4
5void foo(struct x *P, struct x *Q) {
6 *P = *Q;
7}