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