llvm-project/clang/test/CodeGen/struct-copy.c
Nikita Popov 39db5e1ed8 [CodeGen] Convert tests to opaque pointers (NFC)
Conversion performed using the script at:
https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34

These are only tests where no manual fixup was required.
2022-10-07 14:22:00 +02:00

18 lines
456 B
C

// 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.p0.p0
*P = *Q;
}
// CHECK: declare void @llvm.memcpy.p0.p0{{.*}}(ptr noalias nocapture writeonly, ptr noalias nocapture readonly
void bar(struct x *P, struct x *Q) {
// CHECK-LABEL: @bar(
// CHECK: call void @llvm.memcpy.p0.p0
__builtin_memcpy(P, Q, sizeof(struct x));
}