This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 140aafda9d8 Support extended aggregate jump function in ipa-cp new e613a5b1b41 Support C2x [[]] attributes for C.
The 1 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/ChangeLog | 45 +++ gcc/c/c-decl.c | 110 ++++++- gcc/c/c-parser.c | 427 ++++++++++++++++++++------ gcc/c/c-parser.h | 3 +- gcc/c/c-tree.h | 25 +- gcc/c/gimple-parser.c | 2 +- gcc/testsuite/ChangeLog | 7 + gcc/testsuite/gcc.dg/c2x-attr-fallthrough-1.c | 21 ++ gcc/testsuite/gcc.dg/c2x-attr-syntax-1.c | 55 ++++ gcc/testsuite/gcc.dg/c2x-attr-syntax-2.c | 60 ++++ gcc/testsuite/gcc.dg/c2x-attr-syntax-3.c | 56 ++++ gcc/testsuite/gcc.dg/gnu2x-attr-syntax-1.c | 16 + gcc/testsuite/gcc.dg/gnu2x-attr-syntax-2.c | 16 + gcc/testsuite/gcc.dg/gnu2x-attrs-1.c | 72 +++++ 14 files changed, 792 insertions(+), 123 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/c2x-attr-fallthrough-1.c create mode 100644 gcc/testsuite/gcc.dg/c2x-attr-syntax-1.c create mode 100644 gcc/testsuite/gcc.dg/c2x-attr-syntax-2.c create mode 100644 gcc/testsuite/gcc.dg/c2x-attr-syntax-3.c create mode 100644 gcc/testsuite/gcc.dg/gnu2x-attr-syntax-1.c create mode 100644 gcc/testsuite/gcc.dg/gnu2x-attr-syntax-2.c create mode 100644 gcc/testsuite/gcc.dg/gnu2x-attrs-1.c