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