This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 08e752e7236 AVR: ipa/92606 - Don't optimize PROGMEM data against non-PROGMEM. new adb1c8a0f16 Allow flexible array members in unions and alone in structu [...] new f27fc59d9f7 C and C++ FE changes to support flexible array members in u [...] new 93f6a47583f Add testing cases for flexible array members in unions and [...] new 6634a409124 Update the C FE routine "add_flexible_array_elts_to_size" C [...]
The 4 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/c/c-decl.cc | 45 +++++++++------ gcc/cp/class.cc | 11 +++- gcc/cp/decl.cc | 39 +++++++++---- gcc/doc/extend.texi | 34 +++++++++++ gcc/stor-layout.cc | 9 ++- .../c-c++-common/builtin-clear-padding-3.c | 10 ++-- .../c-c++-common/fam-in-union-alone-in-struct-1.c | 52 +++++++++++++++++ .../c-c++-common/fam-in-union-alone-in-struct-2.c | 51 +++++++++++++++++ .../c-c++-common/fam-in-union-alone-in-struct-3.c | 36 ++++++++++++ .../fam-in-union-alone-in-struct-bos-1.c | 66 ++++++++++++++++++++++ .../fam-in-union-alone-in-struct-bos.c | 45 +++++++++++++++ gcc/testsuite/g++.dg/ext/flexary12.C | 6 +- gcc/testsuite/g++.dg/ext/flexary19.C | 42 +++++++------- gcc/testsuite/g++.dg/ext/flexary2.C | 2 +- gcc/testsuite/g++.dg/ext/flexary3.C | 2 +- gcc/testsuite/g++.dg/ext/flexary36.C | 2 +- gcc/testsuite/g++.dg/ext/flexary4.C | 54 +++++++++--------- gcc/testsuite/g++.dg/ext/flexary5.C | 4 +- gcc/testsuite/g++.dg/ext/flexary8.C | 8 +-- gcc/testsuite/g++.dg/torture/pr64280.C | 2 +- gcc/testsuite/gcc.dg/20050620-1.c | 2 +- gcc/testsuite/gcc.dg/940510-1.c | 4 +- 22 files changed, 423 insertions(+), 103 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/fam-in-union-alone-in-struct-1.c create mode 100644 gcc/testsuite/c-c++-common/fam-in-union-alone-in-struct-2.c create mode 100644 gcc/testsuite/c-c++-common/fam-in-union-alone-in-struct-3.c create mode 100644 gcc/testsuite/c-c++-common/fam-in-union-alone-in-struct-bos-1.c create mode 100644 gcc/testsuite/c-c++-common/fam-in-union-alone-in-struct-bos.c