Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1  -debug-info-kind=limited -emit-llvm -o - %s | FileCheck %s
      2 
      3 // CHECK: !DIGlobalVariable({{.*}}variable: i32* @f.xyzzy
      4 void f(void)
      5 {
      6    static int xyzzy;
      7    xyzzy += 3;
      8 }
      9