blob: 62c29aba6c9cfdc78ab223775370db1d2680a5b3 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -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}