xref: /llvm-project/clang/test/CodeGen/2003-11-16-StaticArrayInit.c (revision 1ea584377e7897f7df5302ed9cd378d17be14fbf)
1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2 
bar(void)3 void bar (void) {
4  static char x[10];
5  static char *xend = x + 10;
6 }
7 
8 
9