aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2010-08-10-DbgConstant.c
blob: 04956ae0f276a981f9d66990e6c7e8e6c42574db (plain) (blame)
1
2
3
4
5
6
// 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); }