aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/2010-08-10-DbgConstant.c
blob: 7220f3f8a15bf704b1a7037ff53a46437d024676 (plain)
1
2
3
4
5
6
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited  %s -o - | FileCheck %s
// CHECK: !DIGlobalVariableExpression(var: [[VAR:.*]], expr: !DIExpression(DW_OP_constu, 201, DW_OP_stack_value))

static const unsigned int ro = 201;
void bar(int);
void foo(void) { bar(ro); }