xref: /aosp_15_r20/external/clang/test/CodeGen/2010-08-10-DbgConstant.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -S -emit-llvm -debug-info-kind=limited  %s -o - | FileCheck %s
2 // CHECK: !DIGlobalVariable(
3 
4 static const unsigned int ro = 201;
5 void bar(int);
foo()6 void foo() { bar(ro); }
7