You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
410 B
17 lines
410 B
// RUN: %clang -target x86_64-unknown-windows-msvc -fobjc-runtime=ios -Wno-objc-root-class -S -o - -emit-llvm %s | FileCheck %s
|
|
// RUN: %clang -target x86_64-apple-ios -fobjc-runtime=ios -Wno-objc-root-class -S -o - -emit-llvm %s | FileCheck %s
|
|
|
|
struct S {
|
|
float f, g;
|
|
};
|
|
|
|
@interface I
|
|
@property struct S s;
|
|
@end
|
|
|
|
@implementation I
|
|
@end
|
|
|
|
// CHECK: declare {{.*}}void @objc_copyStruct(i8*, i8*, i64, i1, i1)
|
|
|