1 // RUN: %clang_cc1 -g -emit-llvm -o - %s | FileCheck %s 2 3 // CHECK: !MDGlobalVariable({{.*}}variable: i32* @f.xyzzy f(void)4 void f(void) 5 { 6 static int xyzzy; 7 xyzzy += 3; 8 } 9