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