Daily bump.

This commit is contained in:
GCC Administrator 2022-06-30 00:16:46 +00:00
parent e3a5c77388
commit ce600bc464
9 changed files with 190 additions and 1 deletions

View File

@ -1,3 +1,35 @@
2022-06-29 Sergei Trofimovich <siarheit@google.com>
PR c++/106102
* system.h: Introduce INCLUDE_PTHREAD_H macros to include <pthread.h>.
2022-06-29 Joseph Myers <joseph@codesourcery.com>
* config/nios2/nios2.cc (nios2_load_pic_address): Use gen_rtx_MEM
not gen_const_mem for UNSPEC_PIC_CALL_SYM.
2022-06-29 Richard Biener <rguenther@suse.de>
PR rtl-optimization/106082
* combine.cc (distribute_notes): Preserve notes when
they indicate a call doesn't perform a non-local goto.
2022-06-29 Richard Biener <rguenther@suse.de>
PR tree-optimization/106112
* tree-ssa-sccvn.cc (valueized_wider_op): Properly extend
a constant operand according to its type.
2022-06-29 Martin Liska <mliska@suse.cz>
* doc/invoke.texi: Remove removed evrp-mode.
2022-06-29 Lulu Cheng <chenglulu@loongson.cn>
PR target/106097
* config/loongarch/loongarch.cc (loongarch_build_integer):
Remove undefined behavior from code.
2022-06-28 Dimitar Dimitrov <dimitar@dinux.eu>
* doc/sourcebuild.texi: Document new no_alignment_constraints

View File

@ -1 +1 @@
20220629
20220630

View File

@ -1,3 +1,12 @@
2022-06-29 Nathan Sidwell <nathan@acm.org>
* module.cc (macro_info, macro_traits, macro_table,
macro_remap): Rename to ...
(macro_loc_info, macro_loc_traits, macro_loc_table,
macro_loc_remap): ... these. Update all uses.
(module_state::write_prepare_maps): Remove unneeded macro checking.
(module_state::write_begin): Free macro_loc_remap.
2022-06-27 Sergei Trofimovich <siarheit@google.com>
PR c++/106102

View File

@ -1,3 +1,50 @@
2022-06-29 Iain Buclaw <ibuclaw@gdcproject.org>
PR d/106139
* d-convert.cc (convert_expr): Handle casting from array to vector.
(convert_for_rvalue): Rewrite vector to array casts of the same
element type into a constructor.
(convert_for_assignment): Return calling convert_for_rvalue.
* expr.cc (ExprVisitor::visit (VectorExp *)): Handle generating a
vector expression from a static array.
* toir.cc (IRVisitor::visit (ReturnStatement *)): Call
convert_for_rvalue on return value.
2022-06-29 Iain Buclaw <ibuclaw@gdcproject.org>
* intrinsics.cc (build_shuffle_mask_type): Use to_constant when
getting the number of subparts from a vector type.
(expand_intrinsic_vec_shufflevector): Likewise.
2022-06-29 Iain Buclaw <ibuclaw@gdcproject.org>
* intrinsics.cc: Include diagnostic.h, langhooks.h,
vec-perm-indices.h.
(maybe_set_intrinsic): Add cases for new simd intrinsics.
(warn_mismatched_return_type): New function.
(warn_mismatched_argument): New function.
(build_shuffle_mask_type): New function.
(maybe_warn_intrinsic_mismatch): New function.
(expand_intrinsic_vec_cond): New function.
(expand_intrinsic_vec_convert): New function.
(expand_intrinsic_vec_blend): New function.
(expand_intrinsic_vec_shuffle): New function.
(expand_intrinsic_vec_shufflevector): New function.
(expand_intrinsic_vec_load_unaligned): New function.
(expand_intrinsic_vec_store_unaligned): New function.
(maybe_expand_intrinsic): Check signature of intrinsic before handing
off to front-end lowering. Add cases for new simd intrinsics.
* intrinsics.def (INTRINSIC_LOADUNALIGNED): Define intrinsic.
(INTRINSIC_STOREUNALIGNED): Define intrinsic.
(INTRINSIC_SHUFFLE): Define intrinsic.
(INTRINSIC_SHUFFLEVECTOR): Define intrinsic.
(INTRINSIC_CONVERTVECTOR): Define intrinsic.
(INTRINSIC_BLENDVECTOR): Define intrinsic.
(INTRINSIC_EQUALMASK): Define intrinsic.
(INTRINSIC_NOTEQUALMASK): Define intrinsic.
(INTRINSIC_GREATERMASK): Define intrinsic.
(INTRINSIC_GREATEREQUALMASK): Define intrinsic.
2022-06-28 Iain Buclaw <ibuclaw@gdcproject.org>
* d-codegen.cc: Include gimple-expr.h.

View File

@ -1,3 +1,11 @@
2022-06-29 Harald Anlauf <anlauf@gmx.de>
Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/106121
* simplify.cc (gfc_simplify_extends_type_of): Do not attempt to
simplify when one of the arguments is a CLASS variable that was
not properly declared.
2022-06-28 Jakub Jelinek <jakub@redhat.com>
* gfortran.h (gfc_real_info): Add use_iec_60559 bitfield.

View File

@ -1,3 +1,17 @@
2022-06-29 Antoni Boucher <bouanto@zoho.com>
PR jit/105812
* jit-playback.cc: Use the correct return type when folding in
as_truth_value.
2022-06-29 Sergei Trofimovich <siarheit@google.com>
PR c++/106102
* jit-playback.cc: Include <pthread.h> via "system.h" to avoid calloc()
poisoning.
* jit-recording.cc: Ditto.
* libgccjit.cc: Ditto.
2022-06-10 Antoni Boucher <bouanto@zoho.com>
PR jit/105829

View File

@ -1,3 +1,52 @@
2022-06-29 Antoni Boucher <bouanto@zoho.com>
PR jit/105812
* jit.dg/test-asm.cc: Add include missing to make the test pass.
* jit.dg/test-pr105812-bool-operations.c: New test.
2022-06-29 Iain Buclaw <ibuclaw@gdcproject.org>
PR d/106139
* gdc.dg/pr106139a.d: New test.
* gdc.dg/pr106139b.d: New test.
* gdc.dg/pr106139c.d: New test.
* gdc.dg/pr106139d.d: New test.
2022-06-29 Harald Anlauf <anlauf@gmx.de>
Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/106121
* gfortran.dg/extends_type_of_4.f90: New test.
2022-06-29 Richard Biener <rguenther@suse.de>
PR tree-optimization/106112
* gcc.dg/torture/pr106112.c: New testcase.
2022-06-29 Jan Beulich <jbeulich@suse.com>
* gcc.target/i386/avx512fp16-reduce-op-2.c: Force SSE2 for i?86.
* gcc.target/i386/pr99464.c: Likewise.
2022-06-29 Jan Beulich <jbeulich@suse.com>
* c-c++-common/torture/builtin-shufflevector-2.c: Prune ix86 MMX
ABI warning.
2022-06-29 Iain Buclaw <ibuclaw@gdcproject.org>
* gdc.dg/Wbuiltin_declaration_mismatch.d: Rename to...
* gdc.dg/Wbuiltin_declaration_mismatch1.d: ...this.
* gdc.dg/Wbuiltin_declaration_mismatch2.d: New test.
* gdc.dg/torture/simd_blendvector.d: New test.
* gdc.dg/torture/simd_cond.d: New test.
* gdc.dg/torture/simd_convertvector.d: New test.
* gdc.dg/torture/simd_load.d: New test.
* gdc.dg/torture/simd_logical.d: New test.
* gdc.dg/torture/simd_shuffle.d: New test.
* gdc.dg/torture/simd_shufflevector.d: New test.
* gdc.dg/torture/simd_store.d: New test.
2022-06-28 Iain Buclaw <ibuclaw@gdcproject.org>
* gdc.dg/attr_simd1.d: New test.

View File

@ -1,3 +1,27 @@
2022-06-29 Jakub Jelinek <jakub@redhat.com>
* mk-kinds-h.sh: Change __float128 to _Float128 in a comment.
* acinclude.m4 (LIBGFOR_CHECK_MATH_IEEE128): Use _Float128 instead of
__float128.
* libgfortran.h (isnan): Change __float128 to _Float128 in a comment.
(__acoshieee128, __acosieee128, __asinhieee128, __asinieee128,
__atan2ieee128, __atanhieee128, __atanieee128, __copysignieee128,
__coshieee128, __cosieee128, __erfcieee128, __erfieee128,
__expieee128, __fabsieee128, __fmaieee128, __fmodieee128, __jnieee128,
__log10ieee128, __logieee128, __powieee128, __sinhieee128,
__sinieee128, __sqrtieee128, __tanhieee128, __tanieee128,
__ynieee128, __strtoieee128): Use _Float128 instead of __float128.
* configure: Regenerated.
2022-06-29 Jakub Jelinek <jakub@redhat.com>
PR bootstrap/106137
* acinclude.m4 (LIBGFOR_CHECK_FLOAT128): Adjust comment.
Also test for __float128.
(HAVE_FLOAT128): Adjust description.
* config.h.in: Regenerated.
* configure: Regenerated.
2022-06-28 Jakub Jelinek <jakub@redhat.com>
* configure.ac: Check for strtof128 and strfromf128.

View File

@ -1,3 +1,9 @@
2022-06-29 Iain Buclaw <ibuclaw@gdcproject.org>
* libdruntime/Makefile.am (DRUNTIME_DSOURCES): Add gcc/simd.d.
* libdruntime/Makefile.in: Regenerate.
* libdruntime/gcc/simd.d: New file.
2022-06-28 Iain Buclaw <ibuclaw@gdcproject.org>
* libdruntime/gcc/attributes.d (simd): Define.