This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/indbr/master in repository gcc.
discards 4588a49 Load external function address via GOT slot omits dc9d8a3 Generate indirect branch relocation via GOT omits f295954 Check if x86 gas supports indirect branch via GOT omits a65377d Check $READELF_FOR_TARGET for readelf in configure omits 43e889b Properly handle -fno-plt in ix86_expand_call adds c7ebf62 Daily bump. adds f1a166b * [SH] config.gcc (supported_defaults): Handle sh[123456ble]* [...] adds b21e01b [gcc] adds e3669f2 compiler: Check for invalid UTF8 in Go comments. adds 6a4b27e Rename [su]sum_widen to widen_[su]sum to reflect correct stan [...] adds bfd098e Improve function header comments in tree-ssa-loop-manip.c adds 1d9726d PR libfortran/47571 * acinclude.m4 (LIBGFOR_GTHREAD_WEAK): [...] adds 130d2fa PR fortran/54833 * trans.c (gfc_call_free): Don't check if [...] adds 965a654 Avoid strndup in gcc.c (PR bootstrap/67363) adds ac07ea0 2015-08-31 Richard Biener rguenther@suse.de adds a4e1a24 2015-08-31 Richard Biener rguenther@suse.de adds f0d48a7 * cfganal.c (pre_and_rev_post_order_compute_fn): Correctly [...] adds 303352c Reimplement rewrite_virtuals_into_loop_closed_ssa adds d92f7c8 Move some complex simplifications to match.pd adds ed1990e 2015-08-31 Richard Biener rguenther@suse.de adds 5a7d537 2015-08-31 Richard Biener rguenther@suse.de adds 06e4870 Move some comparison simplifications to match.pd adds 04c1414 PR libfortran/47571 * acinclude.m4 (LIBGFOR_GTHREAD_WEAK): [...] adds b2d409e * configure.ac: For spu-*-* targets, set have_fcntl to no. [...] adds e091399 Update my e-mail address. adds 47284e2 Properly handle -fno-plt in ix86_expand_call new e909dbe Properly handle -fno-plt in ix86_expand_call new f449d0c Check $READELF_FOR_TARGET for readelf in configure new a3a53a3 Check if x86 gas supports indirect branch via GOT new 2de751f Generate indirect branch relocation via GOT new 1bef2c1 Load external function address via GOT slot new ac4ec90 Put local/global relocs in ro section for -fno-plt
This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this:
* -- * -- B -- O -- O -- O (4588a49) \ N -- N -- N refs/heads/hjl/indbr/master (ac4ec90)
You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B.
Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever.
The 6 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: MAINTAINERS | 2 +- gcc/ChangeLog | 91 ++++++++++ gcc/DATESTAMP | 2 +- gcc/cfganal.c | 4 +- gcc/config.gcc | 2 +- gcc/config/i386/i386.c | 18 ++ gcc/config/rs6000/rs6000.c | 86 ++++++++- gcc/doc/md.texi | 8 +- gcc/fold-const.c | 110 ------------ gcc/fortran/ChangeLog | 6 + gcc/fortran/trans.c | 15 +- gcc/fortran/trans.h | 2 +- gcc/gcc.c | 2 +- gcc/genmatch.c | 9 +- gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/lex.cc | 10 ++ gcc/lto-streamer-in.c | 15 +- gcc/lto-streamer-out.c | 6 +- gcc/lto-streamer.h | 3 + gcc/lto/ChangeLog | 14 ++ gcc/lto/lto-symtab.c | 22 ++- gcc/lto/lto.c | 7 +- gcc/match.pd | 70 +++++++- gcc/testsuite/ChangeLog | 12 ++ gcc/testsuite/gcc.dg/tree-ssa/cmp-1.c | 19 ++ gcc/testsuite/gcc.dg/tree-ssa/complex-7.c | 15 ++ gcc/testsuite/gcc.target/i386/pr67400-1.c | 2 +- gcc/testsuite/gcc.target/i386/pr67400-2.c | 2 +- gcc/testsuite/gcc.target/i386/pr67400-5.c | 11 ++ gcc/testsuite/gcc.target/i386/pr67400-6.c | 11 ++ gcc/testsuite/gcc.target/powerpc/swaps-p8-19.c | 20 +++ gcc/tree-ssa-loop-manip.c | 230 +++++++++++++++++-------- gcc/tree.c | 13 ++ gcc/tree.h | 4 + libbacktrace/ChangeLog | 5 + libbacktrace/configure | 1 + libbacktrace/configure.ac | 1 + libgfortran/ChangeLog | 20 +++ libgfortran/acinclude.m4 | 16 ++ libgfortran/config.h.in | 3 + libgfortran/configure | 43 +++++ libgfortran/configure.ac | 3 + libgfortran/intrinsics/system_clock.c | 14 +- 43 files changed, 716 insertions(+), 235 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/cmp-1.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/complex-7.c create mode 100644 gcc/testsuite/gcc.target/i386/pr67400-5.c create mode 100644 gcc/testsuite/gcc.target/i386/pr67400-6.c create mode 100644 gcc/testsuite/gcc.target/powerpc/swaps-p8-19.c