Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1  -g -emit-llvm -o - %s | FileCheck %s
      2 
      3 // CHECK:  xyzzy, null} ; [ DW_TAG_variable ]
      4 void f(void)
      5 {
      6    static int xyzzy;
      7    xyzzy += 3;
      8 }
      9