This adds -no-opaque-pointers to clang tests whose output will change when opaque pointers are enabled by default. This is intended to be part of the migration approach described in https://discourse.llvm.org/t/enabling-opaque-pointers-by-default/61322/9. The patch has been produced by replacing %clang_cc1 with %clang_cc1 -no-opaque-pointers for tests that fail with opaque pointers enabled. Worth noting that this doesn't cover all tests, there's a remaining ~40 tests not using %clang_cc1 that will need a followup change. Differential Revision: https://reviews.llvm.org/D123115
27 lines
908 B
Objective-C
27 lines
908 B
Objective-C
// RUN: %clang_cc1 -no-opaque-pointers -triple x86_64-unknown-freebsd -S -emit-llvm -fobjc-runtime=gnustep-2.0 -o - %s | FileCheck %s
|
|
|
|
|
|
// Check that we have a method list that refers to the correct thing method:
|
|
// CHECK: internal global { i8*, i32, i64, [1 x { i8* (i8*, i8*, ...)*, i8*, i8* }] } { i8* null, i32 1, i64 24,
|
|
// CHECK-SAME: @_i_X_Cat_x
|
|
// CHECK-SAME: @".objc_selector_x_i16\010:8"
|
|
|
|
// Check that we emit the correct encoding for the property (somewhere)
|
|
// CHECK: c"Ti,R\00"
|
|
|
|
// Check that we emit a single-element property list of the correct form.
|
|
// CHECK: internal global { i32, i32, i8*, [1 x { i8*, i8*, i8*, i8*, i8* }] }
|
|
|
|
// CHECK: @.objc_category_XCat = internal global { i8*, i8*, i8*, i8*, i8*, i8*, i8* }
|
|
// CHECK-SAME: section "__objc_cats", align 8
|
|
|
|
@interface X @end
|
|
|
|
@interface X (Cat)
|
|
@property (readonly) int x;
|
|
@end
|
|
|
|
@implementation X (Cat)
|
|
- (int)x { return 12; }
|
|
@end
|