• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -S -emit-llvm -g  %s -o - | grep DW_TAG_variable
2 
3 static const unsigned int ro = 201;
4 void bar(int);
foo()5 void foo() { bar(ro); }
6