hanchenye-llvm-project/clang/test/CodeGen/2010-08-10-DbgConstant.c

7 lines
165 B
C

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