allwinner_a64/android/external/clang/test/CodeGen/2010-08-10-DbgConstant.c
2018-08-08 16:14:42 +08:00

6 lines
187 B
C

// RUN: %clang_cc1 -S -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
// CHECK: !DIGlobalVariable(
static const unsigned int ro = 201;
void bar(int);
void foo() { bar(ro); }