aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/debug-info-static.c
blob: 115beaf84d40a133365c524dbdab0b9498d78b72 (plain) (blame)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1  -g -emit-llvm -o - %s | FileCheck %s

// CHECK: !DIGlobalVariable({{.*}}variable: i32* @f.xyzzy
void f(void)
{
   static int xyzzy;
   xyzzy += 3;
}