summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/struct-copy.c
blob: 62c29aba6c9cfdc78ab223775370db1d2680a5b3 (plain)
1
2
3
4
5
6
7
// RUN: clang-cc -emit-llvm %s -o - | grep 'call.*llvm.memcpy'
struct x { int a[100]; };


void foo(struct x *P, struct x *Q) {
  *P = *Q;
}
OpenPOWER on IntegriCloud