opnsense-src/test/FrontendC/2003-11-16-StaticArrayInit.c
2009-10-14 17:57:32 +00:00

8 lines
119 B
C

// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
void bar () {
static char x[10];
static char *xend = x + 10;
}