xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/debug-info-static-var.m (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
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:  !"0x34\00i\00i\00\00{{.*}}"
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