Daily bump.
This commit is contained in:
parent
f05bbca3d9
commit
942ae5be66
@ -1,3 +1,11 @@
|
||||
2021-01-06 Nick Alcock <nick.alcock@oracle.com>
|
||||
|
||||
* Makefile.def: Sync with binutils-gdb:
|
||||
(dependencies): all-ld depends on all-libctf.
|
||||
(host_modules): libctf is no longer no_install.
|
||||
No longer no_check. Checking depends on all-ld.
|
||||
* Makefile.in: Regenerated.
|
||||
|
||||
2021-01-05 Samuel Thibault <samuel.thibault@ens-lyon.org>
|
||||
|
||||
* libtool.m4: Match gnu* along other GNU systems.
|
||||
|
@ -1,3 +1,11 @@
|
||||
2021-01-06 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* gcc-changelog/git_commit.py: Add decode_path function.
|
||||
* gcc-changelog/git_email.py: Use it in order to solve
|
||||
utf8 encoding filename issues.
|
||||
* gcc-changelog/git_repository.py: Likewise.
|
||||
* gcc-changelog/test_email.py: Test it.
|
||||
|
||||
2021-01-04 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* update-copyright.py: Add AMD and Ulf Adams as external authors.
|
||||
|
@ -1,3 +1,31 @@
|
||||
2021-01-06 Vladimir N. Makarov <vmakarov@redhat.com>
|
||||
|
||||
PR rtl-optimization/97978
|
||||
* lra-int.h (lra_hard_reg_split_p): New external.
|
||||
* lra.c (lra_hard_reg_split_p): New global.
|
||||
(lra): Set up lra_hard_reg_split_p after splitting a hard reg.
|
||||
* lra-assigns.c (lra_assign): Don't check allocation correctness
|
||||
after hard reg splitting.
|
||||
|
||||
2021-01-06 Martin Sebor <msebor@redhat.com>
|
||||
|
||||
PR c++/98305
|
||||
* builtins.c (new_delete_mismatch_p): New overload.
|
||||
(new_delete_mismatch_p (tree, tree)): Call it.
|
||||
|
||||
2021-01-06 Alexandre Oliva <oliva@adacore.com>
|
||||
|
||||
* Makefile.in (T_GLIMITS_H): New.
|
||||
(stmp-int-hdrs): Depend on it, use it.
|
||||
* config/t-vxworks (T_GLIMITS_H): Override it.
|
||||
(vxw-glimits.h): New.
|
||||
|
||||
2021-01-06 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/98513
|
||||
* value-range.cc (intersect_ranges): Compare the upper bounds
|
||||
for the expected relation.
|
||||
|
||||
2021-01-06 Gerald Pfeifer <gerald@pfeifer.com>
|
||||
|
||||
Revert:
|
||||
|
@ -1 +1 @@
|
||||
20210106
|
||||
20210107
|
||||
|
@ -1,3 +1,10 @@
|
||||
2021-01-06 David Malcolm <dmalcolm@redhat.com>
|
||||
|
||||
PR analyzer/97072
|
||||
* region-model-reachability.cc (reachable_regions::init_cluster):
|
||||
Convert symbolic region handling to a switch statement. Add cases
|
||||
to handle SK_UNKNOWN and SK_CONJURED.
|
||||
|
||||
2021-01-05 David Malcolm <dmalcolm@redhat.com>
|
||||
|
||||
PR analyzer/98293
|
||||
|
@ -1,3 +1,18 @@
|
||||
2021-01-06 Martin Sebor <msebor@redhat.com>
|
||||
|
||||
PR c++/95768
|
||||
* c-pretty-print.c (c_pretty_printer::primary_expression): For
|
||||
SSA_NAMEs print VLA names and GIMPLE defining statements.
|
||||
(print_mem_ref): New function.
|
||||
(c_pretty_printer::unary_expression): Call it.
|
||||
|
||||
2021-01-06 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/95582
|
||||
* c-attribs.c (c_common_attribute_table): Add entry for
|
||||
signed_bool_precision.
|
||||
(handle_signed_bool_precision_attribute): New.
|
||||
|
||||
2020-12-24 Iain Sandoe <iain@sandoe.co.uk>
|
||||
|
||||
* c.opt: Add -stdlib= option and enumerations for
|
||||
|
@ -1,3 +1,8 @@
|
||||
2021-01-06 Martin Sebor <msebor@redhat.com>
|
||||
|
||||
PR c++/95768
|
||||
* error.c (dump_expr): Call c_pretty_printer::unary_expression.
|
||||
|
||||
2021-01-05 Patrick Palka <ppalka@redhat.com>
|
||||
|
||||
* pt.c (unify) <case TEMPLATE_PARM_INDEX>: After walking into
|
||||
|
@ -1,3 +1,8 @@
|
||||
2021-01-06 Harald Anlauf <anlauf@gmx.de>
|
||||
|
||||
* resolve.c (resolve_component): Add check for valid CLASS
|
||||
reference before trying to access CLASS data.
|
||||
|
||||
2021-01-04 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* ChangeLog-2018: Remove duplicate ChangeLog entries.
|
||||
|
@ -1,3 +1,62 @@
|
||||
2021-01-06 Vladimir N. Makarov <vmakarov@redhat.com>
|
||||
|
||||
PR rtl-optimization/97978
|
||||
* gcc.target/i386/pr97978.c: New.
|
||||
|
||||
2021-01-06 Martin Sebor <msebor@redhat.com>
|
||||
|
||||
PR c++/95768
|
||||
* g++.dg/pr95768.C: New test.
|
||||
* g++.dg/warn/Wuninitialized-12.C: New test.
|
||||
* gcc.dg/uninit-38.c: New test.
|
||||
|
||||
2021-01-06 Martin Sebor <msebor@redhat.com>
|
||||
|
||||
PR c++/98305
|
||||
* g++.dg/warn/Wmismatched-new-delete-3.C: New test.
|
||||
|
||||
2021-01-06 Iain Sandoe <iain@sandoe.co.uk>
|
||||
|
||||
PR c++/96504
|
||||
* g++.dg/coroutines/torture/pr95519-05-gro.C: Use suspend_always
|
||||
as the final suspend point so that we can check that the state
|
||||
machine has reached the expected point.
|
||||
|
||||
2021-01-06 Marek Polacek <polacek@redhat.com>
|
||||
|
||||
PR testsuite/98566
|
||||
* g++.dg/warn/Wmismatched-dealloc.C: Use target c++14 in
|
||||
dg-error.
|
||||
|
||||
2021-01-06 Alexandre Oliva <oliva@adacore.com>
|
||||
|
||||
* g++.dg/opt/store-merging-2.C: Add the required alignment.
|
||||
|
||||
2021-01-06 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/95582
|
||||
* gcc.dg/pr95582.c: New testcase.
|
||||
|
||||
2021-01-06 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/98513
|
||||
* gcc.dg/tree-ssa/pr98513.c: New testcase.
|
||||
|
||||
2021-01-06 David Malcolm <dmalcolm@redhat.com>
|
||||
|
||||
PR analyzer/97072
|
||||
* gcc.dg/analyzer/pr97072.c: New test.
|
||||
|
||||
2021-01-06 David Malcolm <dmalcolm@redhat.com>
|
||||
|
||||
PR analyzer/98073
|
||||
* gcc.dg/analyzer/pr98073.c: New test.
|
||||
|
||||
2021-01-06 David Malcolm <dmalcolm@redhat.com>
|
||||
|
||||
PR analyzer/98223
|
||||
* gcc.dg/analyzer/pr94851-1.c: Remove xfail.
|
||||
|
||||
2021-01-05 Ilya Leoshkevich <iii@linux.ibm.com>
|
||||
|
||||
* gcc.target/s390/s390.exp: Replace %% with %.
|
||||
|
@ -1,3 +1,8 @@
|
||||
2021-01-06 John David Anglin <danglin@gcc.gnu.org>
|
||||
|
||||
PR bootstrap/98506
|
||||
* resolver.cc: Only use fstatat when _POSIX_C_SOURCE >= 200809L.
|
||||
|
||||
2021-01-04 Nathan Sidwell <nathan@acm.org>
|
||||
|
||||
* client.cc (Client::ProcessResponse): Remove std::move
|
||||
|
Loading…
Reference in New Issue
Block a user