summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGen/struct-copy.c
blob: a45e37a30f4ef0f34c41c11f8327b0acd9f1577d (plain)
1
2
3
4
5
6
7
// 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;
}
OpenPOWER on IntegriCloud