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

// CHECK:  xyzzy, null} ; [ DW_TAG_variable ]
void f(void)
{
   static int xyzzy;
   xyzzy += 3;
}