Home | History | Annotate | Download | only in CodeGenObjC
      1 // RUN: %clang_cc1 -g -emit-llvm -o - %s | FileCheck %s
      2 // Radar 8801045
      3 // Do not emit AT_MIPS_linkage_name for static variable i
      4 
      5 // CHECK: metadata !"i", metadata !"i", metadata !""
      6 
      7 @interface A {
      8 }
      9 -(void) foo;
     10 @end
     11 
     12 @implementation A 
     13 -(void)foo {
     14   static int i = 1;
     15 }
     16 @end
     17 
     18