Home | History | Annotate | Download | only in CodeGenObjCXX
      1 // RUN: %clang_cc1 -fobjc-runtime=macosx-fragile-10.5 -o - -emit-llvm %s | FileCheck %s
      2 // RUN: %clang_cc1 -o - -emit-llvm %s | FileCheck %s
      3 
      4 // CHECK: @"\01L_OBJC_SELECTOR_REFERENCES_" = private externally_initialized global
      5 
      6 void test(id x) {
      7   [x doSomething];
      8 }
      9