diff options
Diffstat (limited to 'llvm/test/CFrontend/2003-11-16-StaticArrayInit.c')
-rw-r--r-- | llvm/test/CFrontend/2003-11-16-StaticArrayInit.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/test/CFrontend/2003-11-16-StaticArrayInit.c b/llvm/test/CFrontend/2003-11-16-StaticArrayInit.c new file mode 100644 index 00000000000..2b42e38dc9a --- /dev/null +++ b/llvm/test/CFrontend/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; +} + + |