This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 89f1603 Fix TYPE_MAIN_VARIANT construction for arrays of qualified ty [...] new 111e415 * cp-gimplify.c (cp_fold): Use fold_build*. new da562e3 Define c_fully_fold separately for C and C++. new 69f54cf Introduce cp_fold_rvalue. new 9c691db Do constant folding in warn_* functions.
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-family/ChangeLog | 11 + gcc/c-family/c-common.c | 609 ++-------------------------------- gcc/c-family/c-common.h | 1 - gcc/c/ChangeLog | 8 + gcc/c/Make-lang.in | 2 +- gcc/c/c-fold.c | 589 ++++++++++++++++++++++++++++++++ gcc/c/c-tree.h | 3 + gcc/cp/ChangeLog | 13 + gcc/cp/call.c | 11 +- gcc/cp/cp-gimplify.c | 72 +++- gcc/testsuite/g++.dg/warn/Wnonnull1.C | 7 + 11 files changed, 721 insertions(+), 605 deletions(-) create mode 100644 gcc/c/c-fold.c create mode 100644 gcc/testsuite/g++.dg/warn/Wnonnull1.C