blob: 42f020e39e8892ff15db494c757af34a59849f7d [file] [log] [blame]
Galina Kistanovaee226972011-06-03 18:36:30 +00001// REQUIRES: x86-registered-target
Daniel Dunbar80737ad2009-12-15 22:01:24 +00002// RUN: %clang -ccc-host-triple i386-apple-darwin10 -S -g -dA %s -o - | FileCheck %s
Devang Patelf6a39b72009-10-20 18:26:30 +00003int global;
Devang Patel7fac68a2010-08-10 01:36:24 +00004// CHECK: ascii "localstatic" ## DW_AT_name
Devang Patel5d822f02010-04-29 17:48:37 +00005// CHECK: asciz "global" ## External Name
Devang Patel5d822f02010-04-29 17:48:37 +00006int main() {
7 static int localstatic;
8 return 0;
9}