From: William Cohen Date: Wed, 4 Oct 2000 17:57:03 +0000 (+0000) Subject: A test to verify the patch to warn of initializers for zero-length X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f7b9c39dc89744b6362eb2db35c082f68a1429bd;p=gcc.git A test to verify the patch to warn of initializers for zero-length arrays is installed in the compiler. From-SVN: r36711 --- diff --git a/gcc/testsuite/gcc.dg/20000926-1.c b/gcc/testsuite/gcc.dg/20000926-1.c new file mode 100644 index 00000000000..630cbcb55b6 --- /dev/null +++ b/gcc/testsuite/gcc.dg/20000926-1.c @@ -0,0 +1,27 @@ +/* Copyright (C) 2000 Free Software Foundation. + + by William Cohen */ + +/* { dg-do compile } */ +/* { dg-options "" } */ + +struct PDATA +{ + unsigned int Dummy:32; + const char* PName; +}; + +typedef struct PDATA P_DATA; + +struct PLAYBOOK { + const char * BookName; + P_DATA Play[0]; +}; + +struct PLAYBOOK playbook = +{ + "BookName", + { + { 1, "PName0" }, /* { dg-warning "excess elements in array initializer|(near initialization for `playbook.Play')" } */ + } +};