brintos

brintos / llvm-project-archived public Read only

0
0
Text · 410 B · 7bbad86 Raw
17 lines · plain
1// RUN: %clang -target x86_64-unknown-windows-msvc -fobjc-runtime=ios -Wno-objc-root-class -S -o - -emit-llvm %s | FileCheck %s2// RUN: %clang -target x86_64-apple-ios -fobjc-runtime=ios -Wno-objc-root-class -S -o - -emit-llvm %s | FileCheck %s3 4struct S {5  float f, g;6};7 8@interface I9@property struct S s;10@end11 12@implementation I13@end14 15// CHECK: declare {{.*}}void @objc_copyStruct(ptr, ptr, i64, i1, i1)16 17