Fariborz Jahanian | 85b99da | 2014-08-28 17:05:17 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -triple x86_64-apple-ios6.0.0 -emit-llvm -o - %s | FileCheck %s |
| 2 | // rdar://18150301 |
| 3 | |
| 4 | @interface Query |
| 5 | + (void)_configureCI; |
| 6 | @end |
| 7 | |
| 8 | __attribute__((visibility("default"))) __attribute__((availability(ios,introduced=7.0))) |
| 9 | @interface ObserverQuery : Query @end |
| 10 | |
| 11 | @implementation ObserverQuery |
| 12 | + (void)_configureCI { |
| 13 | [super _configureCI]; |
| 14 | } |
| 15 | @end |
| 16 | |
| 17 | // CHECK: @"OBJC_METACLASS_$_ObserverQuery" = global %struct._class_t |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 18 | // CHECK: @OBJC_SELECTOR_REFERENCES_ = private externally_initialized global |