Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
44eac33ae12df384f3f002102f919f603bee330f
/
.
/
test
/
CodeGen
/
2009-10-20-GlobalDebug.c
blob: 1db37de4bb27a3c5cc62df36a6122f86db24584e [
file
] [
log
] [
blame
]
// RUN: %clang -ccc-host-triple i386-apple-darwin10 -S -g -dA %s -o - | FileCheck %s
int
global
;
// CHECK: asciz "global" ## External Name
// CHECK: asciz "localstatic" ## External Name
int
main
()
{
static
int
localstatic
;
return
0
;
}