This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from ff31e352b2c PR c/87795 - Excessive alignment permitted for functions an [...] new d2bdcd52c42 arm - minor cleanups for CPU alias support new 3dfda6a646d 2018-11-09 Jerry DeLisle jvdelisle@gcc.gnu.org new 08cc1019cf2 PR middle-end/81824 - Warn for missing attributes with func [...]
The 3 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/ChangeLog | 20 + gcc/attribs.c | 189 ++++++++++ gcc/attribs.h | 6 + gcc/c-family/ChangeLog | 5 + gcc/c-family/c-attribs.c | 583 +++++++++++++++++++++++++++-- gcc/cgraphunit.c | 8 +- gcc/common.opt | 10 +- gcc/config/arm/parsecpu.awk | 3 +- gcc/cp/ChangeLog | 6 + gcc/cp/pt.c | 68 +--- gcc/doc/extend.texi | 83 ++++ gcc/doc/invoke.texi | 46 ++- gcc/testsuite/ChangeLog | 10 + gcc/testsuite/gcc.dg/Wattribute-alias.c | 49 +++ gcc/testsuite/gcc.dg/Wmissing-attributes.c | 95 +++++ gcc/testsuite/gcc.dg/attr-copy-2.c | 209 +++++++++++ gcc/testsuite/gcc.dg/attr-copy-3.c | 75 ++++ gcc/testsuite/gcc.dg/attr-copy-4.c | 61 +++ gcc/testsuite/gcc.dg/attr-copy.c | 33 ++ libgfortran/ChangeLog | 6 + libgfortran/io/transfer.c | 1 - libgomp/libgomp.h | 14 +- 22 files changed, 1463 insertions(+), 117 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/Wattribute-alias.c create mode 100644 gcc/testsuite/gcc.dg/Wmissing-attributes.c create mode 100644 gcc/testsuite/gcc.dg/attr-copy-2.c create mode 100644 gcc/testsuite/gcc.dg/attr-copy-3.c create mode 100644 gcc/testsuite/gcc.dg/attr-copy-4.c create mode 100644 gcc/testsuite/gcc.dg/attr-copy.c