public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-3933] Daily bump.
@ 2022-11-13  0:17 GCC Administrator
  0 siblings, 0 replies; only message in thread
From: GCC Administrator @ 2022-11-13  0:17 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:30d77d496287da11205cf6df4953855222615728

commit r13-3933-g30d77d496287da11205cf6df4953855222615728
Author: GCC Administrator <gccadmin@gcc.gnu.org>
Date:   Sun Nov 13 00:17:02 2022 +0000

    Daily bump.

Diff:
---
 gcc/ChangeLog           | 93 +++++++++++++++++++++++++++++++++++++++++++++++++
 gcc/DATESTAMP           |  2 +-
 gcc/c-family/ChangeLog  |  4 +++
 gcc/c/ChangeLog         | 54 ++++++++++++++++++++++++++++
 gcc/fortran/ChangeLog   | 15 ++++++++
 gcc/testsuite/ChangeLog | 41 ++++++++++++++++++++++
 libgomp/ChangeLog       |  6 ++++
 libstdc++-v3/ChangeLog  | 21 +++++++++++
 8 files changed, 235 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 3cace85140f..96125c18e43 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,96 @@
+2022-11-12  Joseph Myers  <joseph@codesourcery.com>
+
+	* dfp.cc (decimal_from_binary): Convert a canonical NaN to a
+	canonical NaN.
+
+2022-11-12  Aldy Hernandez  <aldyh@redhat.com>
+
+	* value-range.cc (range_tests_signbit): Move to set from here...
+	(range_tests_signed_zeros): ...to here.
+
+2022-11-12  Aldy Hernandez  <aldyh@redhat.com>
+
+	* range-op-float.cc (build_lt): Adjust with frange_nextafter
+	instead of default to a closed range.
+	(build_gt): Same.
+
+2022-11-12  Aldy Hernandez  <aldyh@redhat.com>
+	    Jakub Jelinek  <jakub@redhat.com>
+
+	* range-op-float.cc (float_binary_op_range_finish): New function.
+	(foperator_plus::op1_range): New.
+	(foperator_plus::op2_range): New.
+	(foperator_minus::op1_range): New.
+	(foperator_minus::op2_range): New.
+	(foperator_mult::op1_range): New.
+	(foperator_mult::op2_range): New.
+	(foperator_div::op1_range): New.
+	(foperator_div::op2_range): New.
+
+2022-11-12  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/107569
+	* range-op-float.cc (zero_p, contains_p, singleton_inf_p,
+	signbit_known_p, zero_range, inf_range, zero_to_inf_range): New
+	functions.
+	(foperator_mult_div_base): New class.
+	(foperator_mult, foperator_div): Derive from that and use
+	protected static method from it as well as above new functions
+	to simplify the code.
+
+2022-11-12  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/107569
+	* range-op-float.cc (foperator_div): New class.
+	(floating_op_table::floating_op_table): Use foperator_div
+	for RDIV_EXPR.
+
+2022-11-12  Jakub Jelinek  <jakub@redhat.com>
+
+	PR tree-optimization/107569
+	PR tree-optimization/107591
+	* range-op.h (range_operator_float::rv_fold): Add relation_kind
+	argument.
+	* range-op-float.cc (range_operator_float::fold_range): Name
+	last argument trio and pass trio.op1_op2 () as last argument to
+	rv_fold.
+	(range_operator_float::rv_fold): Add relation_kind argument.
+	(foperator_plus::rv_fold, foperator_minus::rv_fold): Likewise.
+	(foperator_mult): New class.
+	(floating_op_table::floating_op_table): Use foperator_mult for
+	MULT_EXPR.
+
+2022-11-12  Xi Ruoyao  <xry111@xry111.site>
+
+	* config/loongarch/loongarch.md (UNSPEC_FLOGB): New unspec.
+	(type): Add flogb.
+	(logb_non_negative<mode>2): New instruction template.
+	(logb<mode>2): New define_expand.
+
+2022-11-12  Xi Ruoyao  <xry111@xry111.site>
+
+	* config/loongarch/loongarch.md (UNSPEC_FSCALEB): New unspec.
+	(type): Add fscaleb.
+	(IMODE): New mode attr.
+	(ldexp<mode>3): New instruction template.
+
+2022-11-12  Xi Ruoyao  <xry111@xry111.site>
+
+	* config/loongarch/loongarch.md (UNSPEC_FTINT): New unspec.
+	(UNSPEC_FTINTRM): Likewise.
+	(UNSPEC_FTINTRP): Likewise.
+	(LRINT): New define_int_iterator.
+	(lrint_pattern): New define_int_attr.
+	(lrint_submenmonic): Likewise.
+	(lrint_allow_inexact): Likewise.
+	(ANYFI): New define_mode_iterator.
+	(lrint<ANYF><ANYFI>): New instruction template.
+
+2022-11-12  Xi Ruoyao  <xry111@xry111.site>
+
+	* config/loongarch/loongarch.md (frint_<fmt>): Rename to ..
+	(rint<mode>2): .. this.
+
 2022-11-11  David Malcolm  <dmalcolm@redhat.com>
 
 	PR analyzer/106147
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 0e48d446545..f9634730802 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20221112
+20221113
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog
index e0f10b36469..b25c118019f 100644
--- a/gcc/c-family/ChangeLog
+++ b/gcc/c-family/ChangeLog
@@ -1,3 +1,7 @@
+2022-11-12  Joseph Myers  <joseph@codesourcery.com>
+
+	* c-common.cc (c_common_reswords): Use D_C2X instead of D_CXXONLY.
+
 2022-11-11  Jonathan Wakely  <jwakely@redhat.com>
 
 	PR c/85487
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index 95053e8cc6f..d6c6f4f6811 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,57 @@
+2022-11-12  Joseph Myers  <joseph@codesourcery.com>
+
+	* c-decl.cc (start_underspecified_init)
+	(finish_underspecified_init): Handle name == NULL_TREE for
+	compound literals.
+	(merge_decls): Merge C_DECL_DECLARED_CONSTEXPR.
+	(shadow_tag_warned): Check for constexpr.
+	(start_decl): Add parameter do_push.
+	(build_compound_literal): Set C_DECL_DECLARED_CONSTEXPR.
+	(grokdeclarator): Handle constexpr.
+	(finish_struct): Set C_TYPE_FIELDS_NON_CONSTEXPR.
+	(declspecs_add_scspec): Handle constexpr.
+	* c-parser.cc (c_token_starts_compound_literal)
+	(c_token_starts_declspecs, c_parser_declaration_or_fndef)
+	(c_parser_declspecs, c_parser_gnu_attribute_any_word)
+	(c_parser_compound_literal_scspecs)
+	(c_parser_postfix_expression_after_paren_type): Handle constexpr.
+	Update calls to start_init.
+	(c_parser_declaration_or_fndef, c_parser_initializer)
+	(c_parser_initval): Pass true for new argument of
+	convert_lvalue_to_rvalue.  Call convert_lvalue_to_rvalue for
+	constexpr compound literals.
+	(c_parser_static_assert_declaration_no_semi)
+	(c_parser_enum_specifier, c_parser_struct_declaration)
+	(c_parser_alignas_specifier, c_parser_initelt, c_parser_label):
+	Call convert_lvalue_to_rvalue on expressions required to be
+	integer constant expressions.
+	(c_parser_omp_declare_reduction): Update call to start_init.
+	* c-tree.h (C_TYPE_FIELDS_NON_CONSTEXPR)
+	(C_DECL_DECLARED_CONSTEXPR): New macros.
+	(struct c_declspecs): Add constexpr_p.
+	(start_decl, convert_lvalue_to_rvalue, start_init): Update
+	prototypes.
+	* c-typeck.cc (require_constant_value, require_constant_elements):
+	Change to bool.
+	(require_constexpr_value, maybe_get_constexpr_init)
+	(constexpr_init_fits_real_type, check_constexpr_init): New.
+	(convert_lvalue_to_rvalue): Add new parameter for_init.  Call
+	maybe_get_constexpr_init.
+	(store_init_value): Update call to digest_init.
+	(digest_init): Add parameters int_const_expr, arith_const_expr and
+	require_constexpr.  Check constexpr initializers.
+	(constructor_top_level): Remove.
+	(struct initializer_stack): Remove top_level.  Add
+	require_constexpr_value.
+	(start_init): Remove parameter top_level.  Add parameters
+	init_require_constant and init_require_constexpr.  Save
+	require_constexpr_value on stack.
+	(pop_init_level): Use a null pointer constant for zero initializer
+	of pointer initialized with {}.
+	(output_init_element): Update call to digest_init.  Avoid passing
+	null pointer constants of pointer type through digest_init a
+	second time when initializing a constexpr object.
+
 2022-11-03  Joseph Myers  <joseph@codesourcery.com>
 
 	* c-decl.cc (in_underspecified_init, start_underspecified_init)
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 9ae909b2494..73cdb00da69 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,18 @@
+2022-11-12  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/107444
+	* trans-decl.cc (create_function_arglist): Extend presence status
+	to all intrinsic types, and change prefix of internal symbol to '.'.
+	* trans-expr.cc (gfc_conv_expr_present): Align to changes in
+	create_function_arglist.
+	(gfc_conv_procedure_call): Fix generation of procedure arguments for
+	the case of character dummy arguments with optional+value attribute.
+	* trans-types.cc (gfc_get_function_type): Synchronize with changes
+	to create_function_arglist.
+	* doc/gfortran/naming-and-argument-passing-conventions.rst: Clarify
+	the gfortran argument passing conventions with regard to OPTIONAL
+	dummy arguments of intrinsic type.
+
 2022-11-10  Martin Liska  <mliska@suse.cz>
 
 	* doc/gfortran/intrinsic-procedures/abs.rst: Move label directly before title.
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index f2101bc9d59..a3178e59080 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,44 @@
+2022-11-12  Harald Anlauf  <anlauf@gmx.de>
+
+	PR fortran/107444
+	* gfortran.dg/optional_absent_7.f90: Adjust regex.
+	* gfortran.dg/optional_absent_8.f90: New test.
+
+2022-11-12  Joseph Myers  <joseph@codesourcery.com>
+
+	* gcc.dg/c11-keywords-1.c: Also test constexpr.
+	* gcc.dg/c2x-constexpr-1.c, gcc.dg/c2x-constexpr-2a.c,
+	gcc.dg/c2x-constexpr-2b.c, gcc.dg/c2x-constexpr-3.c,
+	gcc.dg/c2x-constexpr-4.c, gcc.dg/c2x-constexpr-5.c,
+	gcc.dg/c2x-constexpr-6.c, gcc.dg/c2x-constexpr-7.c,
+	gcc.dg/c2x-constexpr-8.c, gcc.dg/c2x-constexpr-9.c,
+	gcc.dg/dfp/c2x-constexpr-dfp-1.c,
+	gcc.dg/dfp/c2x-constexpr-dfp-2.c, gcc.dg/gnu2x-constexpr-1.c,
+	gcc.target/i386/excess-precision-11.c,
+	gcc.target/i386/excess-precision-12.c: New tests.
+
+2022-11-12  Aldy Hernandez  <aldyh@redhat.com>
+	    Jakub Jelinek  <jakub@redhat.com>
+
+	* gcc.c-torture/execute/ieee/inf-4.c: New test.
+
+2022-11-12  Xi Ruoyao  <xry111@xry111.site>
+
+	* gcc.target/loongarch/flogb.c: New test.
+
+2022-11-12  Xi Ruoyao  <xry111@xry111.site>
+
+	* gcc.target/loongarch/fscaleb.c: New test.
+
+2022-11-12  Xi Ruoyao  <xry111@xry111.site>
+
+	* gcc.target/loongarch/ftint.c: New test.
+	* gcc.target/loongarch/ftint-no-inexact.c: New test.
+
+2022-11-12  Xi Ruoyao  <xry111@xry111.site>
+
+	* gcc.target/loongarch/frint.c: New test.
+
 2022-11-11  David Malcolm  <dmalcolm@redhat.com>
 
 	PR analyzer/106147
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index 228271fa7f9..b69ca7590fd 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,9 @@
+2022-11-12  Jakub Jelinek  <jakub@redhat.com>
+
+	PR libgomp/107641
+	* env.c (parse_unsigned_long): Cast params[2] to uintptr_t rather than
+	unsigned long.  Change type of upper from unsigned to unsigned long.
+
 2022-11-10  Martin Liska  <mliska@suse.cz>
 
 	* doc/conf.py: Add newline at last line.
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 8732fe6ae30..85ff5c9a1d8 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,24 @@
+2022-11-12  Jakub Jelinek  <jakub@redhat.com>
+
+	PR libstdc++/107636
+	* include/std/charconv (to_chars): Fix up powerpc64le _Float128
+	overload __extension__ placement.
+
+2022-11-12  Jonathan Wakely  <jwakely@redhat.com>
+
+	* src/Makefile.am: Simplify debug build targets.
+	* src/Makefile.in: Regenerate.
+
+2022-11-12  Jonathan Wakely  <jwakely@redhat.com>
+
+	PR libstdc++/103755
+	* src/c++11/locale-inst-monetary.h: Include new header.
+	* src/c++11/locale-inst-numeric.h: Likewise.
+	* src/c++11/locale-inst.cc: Likewise.
+	(INSTANTIATE_USE_FACET, INSTANTIATE_FACET_ACCESSORS): Move
+	macro definitions to ...
+	* src/c++11/facet_inst_macros.h: New file.
+
 2022-11-11  Jonathan Wakely  <jwakely@redhat.com>
 
 	PR libstdc++/95048

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-11-13  0:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-13  0:17 [gcc r13-3933] Daily bump GCC Administrator

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).