aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2023-12-23 00:17:03 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2023-12-23 00:17:03 +0000
commit0a529d196b1f54a2d1e1bf39eae8290d9cfe29ed (patch)
tree22b20a4c0ce42dc4711ae06bf2343c52a935fc91 /gcc
parent8c8d4b565cd7e08c6ec9ca5a4369d8ec5619cad8 (diff)
downloadgcc-0a529d196b1f54a2d1e1bf39eae8290d9cfe29ed.zip
gcc-0a529d196b1f54a2d1e1bf39eae8290d9cfe29ed.tar.gz
gcc-0a529d196b1f54a2d1e1bf39eae8290d9cfe29ed.tar.bz2
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog46
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/c/ChangeLog9
-rw-r--r--gcc/cp/ChangeLog14
-rw-r--r--gcc/testsuite/ChangeLog152
5 files changed, 222 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f4782a7..50376e5 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,49 @@
+2023-12-22 Sandra Loosemore <sandra@codesourcery.com>
+
+ * omp-general.cc (omp_context_name_list_prop): Remove static qualifer.
+ * omp-general.h (omp_context_name_list_prop): Declare.
+ * tree-cfg.cc (dump_function_to_file): Intercept
+ "omp declare variant base" attribute for special handling.
+ * tree-pretty-print.cc: Include omp-general.h.
+ (dump_omp_context_selector): New.
+ (print_omp_context_selector): New.
+ * tree-pretty-print.h (print_omp_context_selector): Declare.
+
+2023-12-22 Jakub Jelinek <jakub@redhat.com>
+
+ PR rtl-optimization/112758
+ * combine.cc (make_compopund_operation_int): Optimize AND of a SUBREG
+ based on nonzero_bits of SUBREG_REG and constant mask on
+ WORD_REGISTER_OPERATIONS targets only if it is a zero extending
+ MEM load.
+
+2023-12-22 Jakub Jelinek <jakub@redhat.com>
+
+ PR tree-optimization/112941
+ * symtab-thunks.cc (expand_thunk): Check aggregate_value_p regardless
+ of whether is_gimple_reg_type (restype) or not.
+
+2023-12-22 Jakub Jelinek <jakub@redhat.com>
+
+ PR tree-optimization/113102
+ * gimple-lower-bitint.cc (gimple_lower_bitint): Handle unreleased
+ large/huge _BitInt SSA_NAMEs.
+
+2023-12-22 Jakub Jelinek <jakub@redhat.com>
+
+ PR tree-optimization/113102
+ * gimple-lower-bitint.cc (bitint_large_huge::handle_cast): Only
+ use m_data[save_data_cnt] if it is non-NULL.
+
+2023-12-22 Christophe Lyon <christophe.lyon@linaro.org>
+
+ * Makefile.in: Allow overriding EXEPCT.
+
+2023-12-22 chenxiaolong <chenxiaolong@loongson.cn>
+
+ * doc/extend.texi:Add modifiers to the vector of asm in the doc.
+ * doc/md.texi:Refine the description of the modifier 'f' in the doc.
+
2023-12-21 Andrew Pinski <quic_apinski@quicinc.com>
PR middle-end/112951
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 5c051c7..f46ff67 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20231222
+20231223
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index 0730393..a899b0d 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,12 @@
+2023-12-22 Martin Uecker <uecker@tugraz.at>
+
+ * c-typeck.cc (composite_type_internal): Adapted from
+ composite_type to support structs and unions.
+ (composite_type): New wrapper function.
+ (build_conditional_operator): Return composite type.
+ * c-decl.cc (finish_struct): Allow NULL for
+ enclosing_struct_parse_info.
+
2023-12-21 Martin Uecker <uecker@tugraz.at>
* c-decl.cc (c_struct_hasher): Hash stable for struct
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 90b26bd..8575676 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,17 @@
+2023-12-22 Jason Merrill <jason@redhat.com>
+
+ PR c++/81438
+ * decl.cc (poplevel_named_label_1): Handle leaving catch.
+ (check_previous_goto_1): Likewise.
+ (check_goto_1): Likewise.
+
+2023-12-22 Jason Merrill <jason@redhat.com>
+
+ PR c++/95298
+ * mangle.cc (write_expression): Handle v18 sizeof... bug.
+ * pt.cc (tsubst_pack_expansion): Keep TREE_VEC for sizeof...
+ (tsubst_expr): Don't strip TREE_VEC here.
+
2023-12-21 Patrick Palka <ppalka@redhat.com>
* cp-tree.h (maybe_warn_unparenthesized_assignment): Add
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 9956b2f..4a3c923 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,155 @@
+2023-12-22 Martin Uecker <uecker@tugraz.at>
+
+ * gcc.dg/c23-tag-alias-6.c: New test.
+ * gcc.dg/c23-tag-alias-7.c: New test.
+ * gcc.dg/c23-tag-composite-1.c: New test.
+ * gcc.dg/c23-tag-composite-2.c: New test.
+ * gcc.dg/c23-tag-composite-3.c: New test.
+ * gcc.dg/c23-tag-composite-4.c: New test.
+ * gcc.dg/c23-tag-composite-5.c: New test.
+ * gcc.dg/c23-tag-composite-6.c: New test.
+ * gcc.dg/c23-tag-composite-7.c: New test.
+ * gcc.dg/c23-tag-composite-8.c: New test.
+ * gcc.dg/c23-tag-composite-9.c: New test.
+ * gcc.dg/c23-tag-composite-10.c: New test.
+ * gcc.dg/gnu23-tag-composite-1.c: New test.
+ * gcc.dg/gnu23-tag-composite-2.c: New test.
+ * gcc.dg/gnu23-tag-composite-3.c: New test.
+ * gcc.dg/gnu23-tag-composite-4.c: New test.
+ * gcc.dg/gnu23-tag-composite-5.c: New test.
+
+2023-12-22 Jakub Jelinek <jakub@redhat.com>
+
+ PR rtl-optimization/112758
+ * gcc.c-torture/execute/pr112758.c: New test.
+
+2023-12-22 Jakub Jelinek <jakub@redhat.com>
+
+ PR tree-optimization/112941
+ * gcc.dg/bitint-60.c: New test.
+
+2023-12-22 Jakub Jelinek <jakub@redhat.com>
+
+ PR tree-optimization/113102
+ * gcc.dg/bitint-59.c: New test.
+
+2023-12-22 Jakub Jelinek <jakub@redhat.com>
+
+ PR tree-optimization/113102
+ * gcc.dg/bitint-58.c: New test.
+
+2023-12-22 Ken Matsui <kmatsui@gcc.gnu.org>
+
+ * g++.dg/ext/is_array.C: Remove testsuite_tr1.h. Add necessary
+ definitions accordingly. Tweak macros for consistency across
+ test codes.
+ * g++.dg/ext/is_bounded_array.C: Likewise.
+ * g++.dg/ext/is_function.C: Likewise.
+ * g++.dg/ext/is_member_function_pointer.C: Likewise.
+ * g++.dg/ext/is_member_object_pointer.C: Likewise.
+ * g++.dg/ext/is_member_pointer.C: Likewise.
+ * g++.dg/ext/is_object.C: Likewise.
+ * g++.dg/ext/is_reference.C: Likewise.
+ * g++.dg/ext/is_scoped_enum.C: Likewise.
+
+2023-12-22 Jason Merrill <jason@redhat.com>
+
+ PR c++/81438
+ * g++.dg/ext/label15.C: Require indirect_jumps.
+ * g++.dg/ext/label16.C: New test.
+
+2023-12-22 Sandra Loosemore <sandra@codesourcery.com>
+
+ * g++.dg/analyzer/placement-new-size.C: Include <stdint.h>. Also
+ add missing newline to end of file.
+
+2023-12-22 Jason Merrill <jason@redhat.com>
+
+ PR c++/95298
+ * g++.dg/cpp0x/variadic-mangle2.C: Add non-member.
+ * g++.dg/cpp0x/variadic-mangle4.C: New test.
+ * g++.dg/cpp0x/variadic-mangle5.C: New test.
+ * g++.dg/cpp0x/variadic-mangle5a.C: New test.
+
+2023-12-22 Jason Merrill <jason@redhat.com>
+
+ * g++.dg/abi/mangle-arm-crypto.C: Specify -fabi-compat-version.
+ * g++.dg/abi/mangle-concepts1.C
+ * g++.dg/abi/mangle-neon-aarch64.C
+ * g++.dg/abi/mangle-neon.C
+ * g++.dg/abi/mangle-regparm.C
+ * g++.dg/abi/mangle-regparm1a.C
+ * g++.dg/abi/mangle-ttp1.C
+ * g++.dg/abi/mangle-union1.C
+ * g++.dg/abi/mangle1.C
+ * g++.dg/abi/mangle13.C
+ * g++.dg/abi/mangle15.C
+ * g++.dg/abi/mangle16.C
+ * g++.dg/abi/mangle18-1.C
+ * g++.dg/abi/mangle19-1.C
+ * g++.dg/abi/mangle20-1.C
+ * g++.dg/abi/mangle22.C
+ * g++.dg/abi/mangle23.C
+ * g++.dg/abi/mangle24.C
+ * g++.dg/abi/mangle25.C
+ * g++.dg/abi/mangle26.C
+ * g++.dg/abi/mangle27.C
+ * g++.dg/abi/mangle28.C
+ * g++.dg/abi/mangle29.C
+ * g++.dg/abi/mangle3-2.C
+ * g++.dg/abi/mangle3.C
+ * g++.dg/abi/mangle30.C
+ * g++.dg/abi/mangle31.C
+ * g++.dg/abi/mangle32.C
+ * g++.dg/abi/mangle33.C
+ * g++.dg/abi/mangle34.C
+ * g++.dg/abi/mangle35.C
+ * g++.dg/abi/mangle36.C
+ * g++.dg/abi/mangle37.C
+ * g++.dg/abi/mangle39.C
+ * g++.dg/abi/mangle40.C
+ * g++.dg/abi/mangle43.C
+ * g++.dg/abi/mangle44.C
+ * g++.dg/abi/mangle45.C
+ * g++.dg/abi/mangle46.C
+ * g++.dg/abi/mangle47.C
+ * g++.dg/abi/mangle48.C
+ * g++.dg/abi/mangle49.C
+ * g++.dg/abi/mangle5.C
+ * g++.dg/abi/mangle50.C
+ * g++.dg/abi/mangle51.C
+ * g++.dg/abi/mangle52.C
+ * g++.dg/abi/mangle53.C
+ * g++.dg/abi/mangle54.C
+ * g++.dg/abi/mangle55.C
+ * g++.dg/abi/mangle56.C
+ * g++.dg/abi/mangle57.C
+ * g++.dg/abi/mangle58.C
+ * g++.dg/abi/mangle59.C
+ * g++.dg/abi/mangle6.C
+ * g++.dg/abi/mangle60.C
+ * g++.dg/abi/mangle61.C
+ * g++.dg/abi/mangle62.C
+ * g++.dg/abi/mangle62a.C
+ * g++.dg/abi/mangle63.C
+ * g++.dg/abi/mangle64.C
+ * g++.dg/abi/mangle65.C
+ * g++.dg/abi/mangle66.C
+ * g++.dg/abi/mangle68.C
+ * g++.dg/abi/mangle69.C
+ * g++.dg/abi/mangle7.C
+ * g++.dg/abi/mangle70.C
+ * g++.dg/abi/mangle71.C
+ * g++.dg/abi/mangle72.C
+ * g++.dg/abi/mangle73.C
+ * g++.dg/abi/mangle74.C
+ * g++.dg/abi/mangle75.C
+ * g++.dg/abi/mangle76.C
+ * g++.dg/abi/mangle77.C
+ * g++.dg/abi/mangle78.C
+ * g++.dg/abi/mangle8.C
+ * g++.dg/abi/mangle9.C: Likewise.
+
2023-12-21 Patrick Palka <ppalka@redhat.com>
* g++.dg/warn/Wparentheses-34.C: New test.