[libc] Switch to using the generic `<gpuintrin.h>` implementations (#121810)
[llvm-project.git] / clang / test / CodeGen / 2010-08-10-DbgConstant.c
blob7220f3f8a15bf704b1a7037ff53a46437d024676
1 // RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
2 // CHECK: !DIGlobalVariableExpression(var: [[VAR:.*]], expr: !DIExpression(DW_OP_constu, 201, DW_OP_stack_value))
4 static const unsigned int ro = 201;
5 void bar(int);
6 void foo(void) { bar(ro); }