diff options
Diffstat (limited to 'test/FrontendC/2003-11-16-StaticArrayInit.c')
-rw-r--r-- | test/FrontendC/2003-11-16-StaticArrayInit.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/FrontendC/2003-11-16-StaticArrayInit.c b/test/FrontendC/2003-11-16-StaticArrayInit.c new file mode 100644 index 0000000..2b42e38 --- /dev/null +++ b/test/FrontendC/2003-11-16-StaticArrayInit.c @@ -0,0 +1,8 @@ +// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null + +void bar () { + static char x[10]; + static char *xend = x + 10; +} + + |