summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2003-11-16-StaticArrayInit.c
blob: 8a11c05d08dbaf36b00fb8c001f60282fddc9247 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null

void bar () {
 static char x[10];
 static char *xend = x + 10;
}