aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2021-02-09 00:16:30 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2021-02-09 00:16:30 +0000
commit2da7ce23cfd81b67f77dc102d6f97dd19363b5f4 (patch)
tree670db54aea1616a472c08ef449afb4453976f4a2 /gcc
parentefcd941e86b507d77e90a1b13f621e036eacdb45 (diff)
downloadgcc-2da7ce23cfd81b67f77dc102d6f97dd19363b5f4.zip
gcc-2da7ce23cfd81b67f77dc102d6f97dd19363b5f4.tar.gz
gcc-2da7ce23cfd81b67f77dc102d6f97dd19363b5f4.tar.bz2
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog28
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/cp/ChangeLog23
-rw-r--r--gcc/testsuite/ChangeLog30
4 files changed, 82 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 0363946..7d4f5db0 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,31 @@
+2021-02-08 Andre Vieira <andre.simoesdiasvieira@arm.com>
+
+ PR middle-end/98974
+ * tree-vect-stmts.c (vectorizable_condition): Remove shadow vec_num
+ parameter in vectorizable_condition.
+
+2021-02-08 Richard Biener <rguenther@suse.de>
+
+ PR lto/96591
+ * tree.c (walk_tree_1): Walk VECTOR_CST elements.
+
+2021-02-08 Martin Liska <mliska@suse.cz>
+
+ PR lto/98971
+ * cfgexpand.c (pass_expand::execute): Parse per-function option
+ flag_patchable_function_entry and use it.
+ * common.opt: Remove function_entry_patch_area_size and
+ function_entry_patch_area_start global variables.
+ * opts.c (parse_and_check_patch_area): New function.
+ (common_handle_option): Use it.
+ * opts.h (parse_and_check_patch_area): New function.
+ * toplev.c (process_options): Parse and use
+ function_entry_patch_area_size.
+
+2021-02-08 Martin Sebor <msebor@redhat.com>
+
+ * doc/extend.texi (attribute malloc): Correct typos.
+
2021-02-05 Nathan Sidwell <nathan@acm.org>
PR driver/98943
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 0100c05..69950ec 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20210208
+20210209
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 5522353..b9d49d3 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,26 @@
+2021-02-08 Nathan Sidwell <nathan@acm.org>
+
+ * decl.c (start_cleanup_fn): Push function into
+ namespace.
+
+2021-02-08 Nathan Sidwell <nathan@acm.org>
+
+ PR c++/98531
+ * cp-tree.h (push_abi_namespace, pop_abi_namespace): Declare.
+ * decl.c (push_abi_namespace, pop_abi_namespace): Moved
+ from rtti.c, add default namespace arg.
+ (check_redeclaration_exception_specification): Allow a lazy
+ builtin's eh spec to differ from an lready-declared user
+ declaration.
+ (declare_global_var): Use push/pop_abi_namespace.
+ (get_atexit_node): Push the fndecl into a namespace.
+ * rtti.c (push_abi_namespace, pop_abi_namespace): Moved to
+ decl.c.
+
+2021-02-08 Marek Polacek <polacek@redhat.com>
+
+ * cp-tree.h (CLASSTYPE_TI_TEMPLATE): Fix typo.
+
2021-02-05 Marek Polacek <polacek@redhat.com>
PR c++/98947
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 1ad4252..b6fb7f3 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,33 @@
+2021-02-08 Nathan Sidwell <nathan@acm.org>
+
+ * g++.dg/modules/pr98531-2.h: New.
+ * g++.dg/modules/pr98531-2_a.H: New.
+ * g++.dg/modules/pr98531-2_b.C: New.
+ * g++.dg/modules/pr98531-3.h: New.
+ * g++.dg/modules/pr98531-3_a.H: New.
+ * g++.dg/modules/pr98531-3_b.C: New.
+
+2021-02-08 Nathan Sidwell <nathan@acm.org>
+
+ PR c++/98531
+ * g++.dg/modules/pr98531-1.h: New.
+ * g++.dg/modules/pr98531-1_a.H: New.
+ * g++.dg/modules/pr98531-1_b.C: New.
+ * g++.dg/abi/pr98531-1.C: New.
+ * g++.dg/abi/pr98531-2.C: New.
+ * g++.dg/abi/pr98531-3.C: New.
+ * g++.dg/abi/pr98531-4.C: New.
+
+2021-02-08 Andre Vieira <andre.simoesdiasvieira@arm.com>
+
+ PR middle-end/98974
+ * gfortran.dg/pr98974.F90: New test.
+
+2021-02-08 Richard Biener <rguenther@suse.de>
+
+ PR lto/96591
+ * g++.dg/lto/pr96591_0.C: New testcase.
+
2021-02-05 Marek Polacek <polacek@redhat.com>
PR c++/98947