mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-29 08:19:01 -04:00

order. Describe static data members to metadata using new interfaces. Part of PR14471. Patch by Paul Robinson! llvm-svn: 172591
9 lines
157 B
C
9 lines
157 B
C
// RUN: %clang_cc1 -g -emit-llvm -o - %s | FileCheck %s
|
|
|
|
// CHECK: xyzzy, null} ; [ DW_TAG_variable ]
|
|
void f(void)
|
|
{
|
|
static int xyzzy;
|
|
xyzzy += 3;
|
|
}
|