[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGenObjC / objc_copyStruct.m
blob7bbad866e2b1fb2035e42ed35f5a803695efc617
1 // RUN: %clang -target x86_64-unknown-windows-msvc -fobjc-runtime=ios -Wno-objc-root-class -S -o - -emit-llvm %s | FileCheck %s
2 // RUN: %clang -target x86_64-apple-ios -fobjc-runtime=ios -Wno-objc-root-class -S -o - -emit-llvm %s | FileCheck %s
4 struct S {
5   float f, g;
6 };
8 @interface I
9 @property struct S s;
10 @end
12 @implementation I
13 @end
15 // CHECK: declare {{.*}}void @objc_copyStruct(ptr, ptr, i64, i1, i1)