brintos

brintos / llvm-project-archived public Read only

0
0
Text · 649 B · 099bf68 Raw
21 lines · plain
1// REQUIRES: x86-registered-target2// RUN: %clang_cc1 -fobjc-gc -triple x86_64-apple-darwin -fobjc-runtime=macosx-fragile-10.5 -S %s -o %t-64.s3// RUN: FileCheck -check-prefix CHECK-LP64 --input-file=%t-64.s %s4// RUN: %clang_cc1 -x objective-c++ -fobjc-gc -triple x86_64-apple-darwin -fobjc-runtime=macosx-fragile-10.5 -S %s -o %t-64.s5// RUN: FileCheck -check-prefix CHECK-LP64 --input-file=%t-64.s %s6 7@interface NSObject {8  id isa;9}10@end11 12@interface AllPointers : NSObject {13    id foo;14    void *__strong bar;    NSObject *bletch;}15@end16@implementation AllPointers17@end18 19// CHECK-LP64: L_OBJC_CLASS_NAME_.6:20// CHECK-LP64-NEXT: .asciz	"\004"21