• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // REQUIRES: x86-registered-target
2 // RUN: %clang -ccc-host-triple i386-apple-darwin10 -S -g -dA %s -o - | FileCheck %s
3 int global;
4 // CHECK: ascii   "localstatic"          ## DW_AT_name
5 // CHECK: asciz   "global" ## External Name
main()6 int main() {
7   static int localstatic;
8   return 0;
9 }
10