summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGen/struct-copy.c
blob: 029361b0c7d537605494b4e69cc874f74c9a45c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
struct x { int a[100]; };


void foo(struct x *P, struct x *Q) {
// CHECK-LABEL: @foo(
// CHECK:    call void @llvm.memcpy.p0i8.p0i8.i64
  *P = *Q;
}

// CHECK: declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg)

void bar(struct x *P, struct x *Q) {
// CHECK-LABEL: @bar(
// CHECK:    call void @llvm.memcpy.p0i8.p0i8.i64
  __builtin_memcpy(P, Q, sizeof(struct x));
}
OpenPOWER on IntegriCloud