blob: 7fa0ad54f3aec6319292b0f4bb822c0bd82022fd [file] [log] [blame]
Saleem Abdulrasool91d9bfc2017-06-17 17:30:31 +00001// 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
3
4struct S {
5 float f, g;
6};
7
8@interface I
9@property struct S s;
10@end
11
12@implementation I
13@end
14
15// CHECK: declare {{.*}}void @objc_copyStruct(i8*, i8*, i64, i1, i1)
16