Daily bump.

This commit is contained in:
GCC Administrator 2021-05-04 00:16:53 +00:00
parent f87990a2a8
commit e690396da7
13 changed files with 2597 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2021-05-03 H.J. Lu <hjl.tools@gmail.com>
PR bootstrap/99703
* cet.m4 (GCC_CET_HOST_FLAGS): Check if host supports multi-byte
NOPs.
2021-04-13 Martin Storsjö <martin@martin.st>
* mh-mingw: Set __USE_MINGW_ACCESS in missed C++ flags

View File

@ -1,3 +1,41 @@
2021-05-03 Tom de Vries <tdevries@suse.de>
PR target/100321
* omp-low.c (lower_rec_input_clauses): Disable SIMT for user-defined
reduction.
2021-05-03 Richard Biener <rguenther@suse.de>
* tree-ssa-dse.c (dse_classify_store): Track two PHI defs.
2021-05-03 Richard Biener <rguenther@suse.de>
* tree-ssa-dse.c: Do not include domwalk.h but cfganal.h.
(dse_dom_walker): Remove.
(dse_dom_walker::dse_optimize_stmt): Rename...
(dse_optimize_stmt): ... to this, pass in live_bytes sbitmap.
(dse_dom_walker::before_dom_children): Inline ...
(pass_dse::execute): ... here. Perform a reverse program
order walk.
2021-05-03 H.J. Lu <hjl.tools@gmail.com>
PR bootstrap/99703
* configure: Regenerated.
2021-05-03 Ilya Leoshkevich <iii@linux.ibm.com>
PR target/100217
* config/s390/s390.c (s390_hard_fp_reg_p): New function.
(s390_md_asm_adjust): Handle hard registers.
2021-05-03 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/100382
* tree-ssa-dse.c: Include tree-eh.h.
(dse_dom_walker::before_dom_children): Don't remove stmts if
stmt_unremovable_because_of_non_call_eh_p is true.
2021-05-02 David Edelsohn <dje.gcc@gmail.com>
* varasm.c (compute_reloc_for_var): Split out from...

View File

@ -1 +1 @@
20210503
20210504

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,28 @@
2021-05-03 Patrick Palka <ppalka@redhat.com>
PR c++/100362
* parser.c (cp_parser_class_head): Reinstate calls to pushclass
and popclass when parsing the base-clause that were removed in
r11-6815.
2021-05-03 Patrick Palka <ppalka@redhat.com>
PR c++/68942
PR c++/100344
* pt.c (tsubst_copy_and_build) <case CALL_EXPR>: Set tf_conv
only when the callee is a FUNCTION_DECL.
2021-05-03 Marek Polacek <polacek@redhat.com>
PR c++/100055
* decl.c (grokfndecl): Check current_template_parms.
2021-05-03 Marek Polacek <polacek@redhat.com>
DR 1312
* constexpr.c (cxx_eval_constant_expression): Don't check
integer_zerop.
2021-05-01 Jason Merrill <jason@redhat.com>
* cp-tree.h (class ovl_iterator): Allow copying. Add op==.

View File

@ -1,3 +1,73 @@
2021-05-03 Christophe Lyon <christophe.lyon@linaro.org>
* gcc.target/aarch64/advsimd-intrinsics/vmla_float_not_fused.c:
Fix dg directives order.
* gcc.target/aarch64/advsimd-intrinsics/vmls_float_not_fused.c:
Likewise.
2021-05-03 Jeff Law <jlaw@tachyum.com>
* gcc.dg/tree-ssa/ssa-dse-26.c: Fix expected output for nds32le
and m32r.
2021-05-03 Patrick Palka <ppalka@redhat.com>
PR c++/100362
* g++.dg/cpp1y/lambda-generic-100362.C: New test.
2021-05-03 Patrick Palka <ppalka@redhat.com>
PR c++/68942
PR c++/100344
* g++.dg/template/call8.C: New test.
* g++.dg/template/koenig12a.C: New test.
2021-05-03 Jeff Law <jlaw@tachyum.com>
* gcc.dg/tree-ssa/ssa-dse-26.c: Fix expected output for bfin and lm32.
2021-05-03 Marek Polacek <polacek@redhat.com>
PR c++/100055
* g++.dg/concepts/diagnostic18.C: New test.
2021-05-03 Marek Polacek <polacek@redhat.com>
DR 1312
* g++.dg/cpp0x/constexpr-cast2.C: Remove XFAILs.
2021-05-03 Jeff Law <jlaw@tachyum.com>
* gcc.dg/tree-ssa/ssa-dse-26.c: Fix xstormy selector.
2021-05-03 Jeff Law <jlaw@tachyum.com>
* gcc.dg/tree-ssa/ssa-dse-26.c: Update expected output for rx too.
2021-05-03 Jeff Law <jlaw@tachyum.com>
* gcc.dg/tree-ssa/ssa-dse-26.c: Update expected output for or1k too.
2021-05-03 Jeff Law <jlaw@tachyum.com>
* gcc.dg/tree-ssa/ssa-dse-26.c: Update expected output for
cr16 and xstormy16 targets.
2021-05-03 Richard Biener <rguenther@suse.de>
* gcc.dg/tree-ssa/ssa-dse-42.c: New testcase.
* gcc.dg/pr81192.c: Disable DSE.
2021-05-03 Richard Biener <rguenther@suse.de>
* gcc.dg/tree-ssa/ssa-dse-41.c: New testcase.
2021-05-03 Ilya Leoshkevich <iii@linux.ibm.com>
PR target/100217
* gcc.target/s390/vector/long-double-asm-in-out-hard-fp-reg.c: New test.
* gcc.target/s390/vector/long-double-asm-inout-hard-fp-reg.c: New test.
2021-05-02 David Edelsohn <dje.gcc@gmail.com>
* g++.dg/ext/visibility/fvisibility-inlines-hidden-4.C: Expect [BS]

View File

@ -1,3 +1,8 @@
2021-05-03 H.J. Lu <hjl.tools@gmail.com>
PR bootstrap/99703
* configure: Regenerated.
2021-03-03 Ian Lance Taylor <iant@golang.org>
* dwarf.c (read_line_program): Don't special case file 0.

View File

@ -1,3 +1,8 @@
2021-05-03 H.J. Lu <hjl.tools@gmail.com>
PR bootstrap/99703
* configure: Regenerated.
2021-01-05 Samuel Thibault <samuel.thibault@ens-lyon.org>
* configure: Re-generate.

View File

@ -1,3 +1,8 @@
2021-05-03 H.J. Lu <hjl.tools@gmail.com>
PR bootstrap/99703
* configure: Regenerated.
2021-04-29 Joseph Myers <joseph@codesourcery.com>
PR preprocessor/82359

View File

@ -1,3 +1,8 @@
2021-05-03 H.J. Lu <hjl.tools@gmail.com>
PR bootstrap/99703
* configure: Regenerated.
2020-07-30 H.J. Lu <hjl.tools@gmail.com>
PR bootstrap/96202

View File

@ -1,3 +1,8 @@
2021-05-03 Tom de Vries <tdevries@suse.de>
PR target/100321
* testsuite/libgomp.c/target-44.c: New test.
2021-04-30 Roman Zhuykov <zhroma@ispras.ru>
* testsuite/libgomp.oacc-c-c++-common/atomic_capture-3.c: New test.

View File

@ -1,3 +1,8 @@
2021-05-03 H.J. Lu <hjl.tools@gmail.com>
PR bootstrap/99703
* configure: Regenerated.
2021-04-21 Andreas Schwab <schwab@linux-m68k.org>
PR demangler/100177

View File

@ -1,3 +1,8 @@
2021-05-03 H.J. Lu <hjl.tools@gmail.com>
PR bootstrap/99703
* configure: Regenerated.
2021-04-21 Martin Liska <mliska@suse.cz>
* lto-plugin.c (exec_lto_wrapper): Make a temp variable.