xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/externally-initialized-selectors.m (revision b5e2faaaaf60a8b9a02f8d72f64caa56a87eb312)
1// RUN: %clang_cc1 -cc1 -fobjc-runtime=macosx-fragile-10.5 -o - -emit-llvm %s | FileCheck %s
2// RUN: %clang_cc1 -cc1 -o - -emit-llvm %s | FileCheck %s
3
4// CHECK: @"\01L_OBJC_SELECTOR_REFERENCES_" = internal externally_initialized global
5
6void test(id x) {
7  [x doSomething];
8}
9