This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 9b657cf PR tree-optimization/69156 * gimple.c (validate_type): Remo [...] new bda05c5 Improve warning locations (PR66208) new 398368d [gcc] 2016-01-13 Michael Meissner meissner@linux.vnet.ibm.com
The 2 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 | 49 +++ gcc/c-family/c-common.c | 27 +- gcc/c-family/c-common.h | 2 +- gcc/c/c-typeck.c | 2 +- gcc/config/rs6000/rs6000-builtin.def | 12 + gcc/config/rs6000/rs6000.c | 30 +- gcc/config/rs6000/rs6000.h | 5 +- gcc/config/rs6000/rs6000.md | 44 +-- gcc/cp/call.c | 2 +- gcc/cp/typeck.c | 2 +- gcc/doc/extend.texi | 2 + gcc/testsuite/ChangeLog | 5 + gcc/testsuite/c-c++-common/pr66208.c | 10 + libgcc/ChangeLog | 77 ++++- libgcc/config.host | 9 + .../rs6000/extendkftf2-sw.c} | 44 ++- .../{soft-fp/fixtfti.c => config/rs6000/fixkfti.c} | 17 +- .../fixunstfti.c => config/rs6000/fixunskfti.c} | 17 +- libgcc/config/rs6000/float128-hw.c | 207 ++++++++++++ libgcc/config/rs6000/float128-ifunc.c | 358 +++++++++++++++++++++ libgcc/config/rs6000/float128-sed | 25 ++ .../floattitf.c => config/rs6000/floattikf.c} | 17 +- .../floattitf.c => config/rs6000/floatuntikf.c} | 17 +- libgcc/config/rs6000/quad-float128.h | 203 ++++++++++++ libgcc/config/rs6000/sfp-exceptions.c | 72 +++++ libgcc/config/rs6000/sfp-machine.h | 94 +++++- libgcc/config/rs6000/t-float128 | 95 ++++++ libgcc/config/rs6000/t-float128-hw | 24 ++ .../rs6000/trunctfkf2-sw.c} | 44 ++- libgcc/configure | 49 +++ libgcc/configure.ac | 25 ++ 31 files changed, 1457 insertions(+), 129 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/pr66208.c copy libgcc/{soft-fp/extendsfdf2.c => config/rs6000/extendkftf2-sw.c} (67%) copy libgcc/{soft-fp/fixtfti.c => config/rs6000/fixkfti.c} (79%) copy libgcc/{soft-fp/fixunstfti.c => config/rs6000/fixunskfti.c} (79%) create mode 100644 libgcc/config/rs6000/float128-hw.c create mode 100644 libgcc/config/rs6000/float128-ifunc.c create mode 100644 libgcc/config/rs6000/float128-sed copy libgcc/{soft-fp/floattitf.c => config/rs6000/floattikf.c} (79%) copy libgcc/{soft-fp/floattitf.c => config/rs6000/floatuntikf.c} (79%) create mode 100644 libgcc/config/rs6000/quad-float128.h create mode 100644 libgcc/config/rs6000/sfp-exceptions.c create mode 100644 libgcc/config/rs6000/t-float128 create mode 100644 libgcc/config/rs6000/t-float128-hw copy libgcc/{soft-fp/extendsfdf2.c => config/rs6000/trunctfkf2-sw.c} (67%)