xref: /openbsd-src/regress/gnu/egcs/gcc-bounds/vararray-1.c (revision 78d96312fde09e5cc7981ee896cb6c718b5d53e8)
1 /* gcc used to barf on this with a 'not 8-byte aligned' error
2  * while correct behaviour is to ignore it */
3 
4 #include <stdio.h>
5 #include <string.h>
6 
main(int argc,char ** argv)7 int main(int argc, char **argv) {
8 	int sample_buffer[10][argc+10];
9 	memset(sample_buffer, 0, sizeof(sample_buffer));
10 	return 1;
11 }
12