diff options
author | Bjorn Pettersson <bjorn.a.pettersson@ericsson.com> | 2018-05-22 08:16:45 +0000 |
---|---|---|
committer | Bjorn Pettersson <bjorn.a.pettersson@ericsson.com> | 2018-05-22 08:16:45 +0000 |
commit | 844663353d34c43e99d920042820a8a33f5ab1de (patch) | |
tree | 9bae874906e0a5cc0bcc5e3a53cc14b86ed8ce60 /clang/test/CodeGenObjC/gnustep2-proto.m | |
parent | 0e132dca53ebd7e43145ba9c31d714630ff9f78d (diff) | |
download | bcm5719-llvm-844663353d34c43e99d920042820a8a33f5ab1de.tar.gz bcm5719-llvm-844663353d34c43e99d920042820a8a33f5ab1de.zip |
Revert r332955 "GNUstep Objective-C ABI version 2"
Reverted due to buildbot failures.
Seems like isnumber() is some Apple addition to cctype.
llvm-svn: 332957
Diffstat (limited to 'clang/test/CodeGenObjC/gnustep2-proto.m')
-rw-r--r-- | clang/test/CodeGenObjC/gnustep2-proto.m | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/clang/test/CodeGenObjC/gnustep2-proto.m b/clang/test/CodeGenObjC/gnustep2-proto.m deleted file mode 100644 index 536714f03a9..00000000000 --- a/clang/test/CodeGenObjC/gnustep2-proto.m +++ /dev/null @@ -1,39 +0,0 @@ -// RUN: %clang_cc1 -triple x86_64-unknown-freebsd -S -emit-llvm -fobjc-runtime=gnustep-2.0 -o - %s | FileCheck %s - -@protocol X -@optional -- (id)x; -@required -+ (void*)y; -@property int reqProp; -@optional -@property int optProp; -@end - -// Check that we get some plausible-looking method lists. -// CHECK: internal global { i32, i32, [2 x { i8*, i8* }] } { i32 2, i32 16, -// CHECK-SAME: @".objc_selector_reqProp_i16\010:8" -// CHECK-SAME: @".objc_selector_setReqProp:_v20\010:8i16" -// CHECK: internal global { i32, i32, [3 x { i8*, i8* }] } { i32 3, i32 16, -// CHECK-SAME: @".objc_selector_x_\0116\010:8" -// CHECK-SAME: @".objc_selector_optProp_i16\010:8" -// CHECK-SAME: @".objc_selector_setOptProp:_v20\010:8i16" - - -// Check that we're emitting the protocol and a correctly initialised -// indirection variable. -// CHECK: @._OBJC_PROTOCOL_X = global -// CHECK-SAME: , section "__objc_protocols", comdat, align 8 -// CHECK: @._OBJC_REF_PROTOCOL_X = global -// CHECK-SAME: @._OBJC_PROTOCOL_X -// CHECK-SAME: , section "__objc_protocol_refs", align 8 - - -// Check that we load from the indirection variable on protocol references. -// CHECK: define i8* @x() -// CHECK: = load -// CHECK-SAME: @._OBJC_REF_PROTOCOL_X, align 8 -void *x() -{ - return @protocol(X); -} |