mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-13 09:40:50 +08:00
Daily bump.
This commit is contained in:
parent
41cbcf53dc
commit
756a61851c
@ -1,3 +1,49 @@
|
||||
2022-02-24 Palmer Dabbelt <palmer@rivosinc.com>
|
||||
|
||||
* doc/invoke.texi (RISC-V -mcmodel=medany): Document the degree
|
||||
of position independence that -mcmodel=medany affords.
|
||||
|
||||
2022-02-24 Jose E. Marchesi <jose.marchesi@oracle.com>
|
||||
|
||||
PR target/104656
|
||||
* configure.ac: --disable-gcov if targetting bpf-*.
|
||||
* configure: Regenerate.
|
||||
|
||||
2022-02-24 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/104676
|
||||
* tree-loop-distribution.cc (loop_distribution::execute):
|
||||
Do a full scev_reset.
|
||||
|
||||
2022-02-24 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR tree-optimization/104601
|
||||
* tree-ssa-sccvn.cc (visit_reference_op_call): For calls with
|
||||
non-SSA_NAME lhs value number vdef to itself instead of e.g. the
|
||||
vuse value number.
|
||||
|
||||
2022-02-24 Tom de Vries <tdevries@suse.de>
|
||||
Tobias Burnus <tobias@codesourcery.com>
|
||||
|
||||
* config/nvptx/nvptx.cc (nvptx_omp_device_kind_arch_isa): Handle
|
||||
sm_70, sm_75 and sm_80.
|
||||
* config/nvptx/t-omp-device: Add sm_53, sm_70, sm_75 and sm_80.
|
||||
|
||||
2022-02-24 Tom de Vries <tdevries@suse.de>
|
||||
|
||||
* config/nvptx/nvptx.md (define_insn "rotlsi3", define_insn
|
||||
"rotrsi3"): New define_insn.
|
||||
|
||||
2022-02-24 Tom de Vries <tdevries@suse.de>
|
||||
|
||||
* config/nvptx/nvptx.cc (gen_comment): Use
|
||||
DECL_SOURCE_LOCATION (cfun->decl) instead of cfun->function_start_locus.
|
||||
|
||||
2022-02-24 liuhongt <hongtao.liu@intel.com>
|
||||
|
||||
* config/i386/sse.md (<code>v1ti3): Add suffix and replace
|
||||
isa attr of alternative 2 from avx to avx512vl.
|
||||
|
||||
2022-02-23 Richard Biener <rguenther@suse.de>
|
||||
Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
|
@ -1 +1 @@
|
||||
20220224
|
||||
20220225
|
||||
|
@ -1,3 +1,7 @@
|
||||
2022-02-24 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* pt.cc (defarg_insts_for): Use braces for subobject.
|
||||
|
||||
2022-02-18 Patrick Palka <ppalka@redhat.com>
|
||||
|
||||
PR c++/94944
|
||||
|
@ -1,3 +1,14 @@
|
||||
2022-02-24 Harald Anlauf <anlauf@gmx.de>
|
||||
|
||||
PR fortran/84519
|
||||
* dump-parse-tree.cc (show_code_node): Dump QUIET specifier when
|
||||
present.
|
||||
* match.cc (gfc_match_stopcode): Implement parsing of F2018 QUIET
|
||||
specifier. F2018 stopcodes may have non-default integer kind.
|
||||
* resolve.cc (gfc_resolve_code): Add checks for QUIET argument.
|
||||
* trans-stmt.cc (gfc_trans_stop): Pass QUIET specifier to call of
|
||||
library function.
|
||||
|
||||
2022-02-22 Harald Anlauf <anlauf@gmx.de>
|
||||
|
||||
PR fortran/104619
|
||||
|
@ -1,3 +1,36 @@
|
||||
2022-02-24 Pat Haugen <pthaugen@linux.ibm.com>
|
||||
|
||||
PR testsuite/100407
|
||||
* gcc.c-torture/compile/attr-retain-1.c: Add -G0 for 32-bit PowerPC.
|
||||
* gcc.c-torture/compile/attr-retain-2.c: Likewise.
|
||||
|
||||
2022-02-24 Harald Anlauf <anlauf@gmx.de>
|
||||
|
||||
PR fortran/84519
|
||||
* gfortran.dg/stop_1.f90: New test.
|
||||
* gfortran.dg/stop_2.f: New test.
|
||||
* gfortran.dg/stop_3.f90: New test.
|
||||
* gfortran.dg/stop_4.f90: New test.
|
||||
|
||||
2022-02-24 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/104676
|
||||
* gcc.dg/torture/pr104676.c: New testcase.
|
||||
|
||||
2022-02-24 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR tree-optimization/104601
|
||||
* g++.dg/torture/pr104601.C: New test.
|
||||
|
||||
2022-02-24 Tom de Vries <tdevries@suse.de>
|
||||
|
||||
* gcc.target/nvptx/rotate-run.c: New test.
|
||||
* gcc.target/nvptx/rotate.c: New test.
|
||||
|
||||
2022-02-24 liuhongt <hongtao.liu@intel.com>
|
||||
|
||||
* gcc.target/i386/avx512vl-logicsuffix-1.c: New test.
|
||||
|
||||
2022-02-23 David Malcolm <dmalcolm@redhat.com>
|
||||
|
||||
PR analyzer/104434
|
||||
|
@ -1,3 +1,14 @@
|
||||
2022-02-24 Xi Ruoyao <xry111@mengyan1223.wang>
|
||||
|
||||
* unwind-dw2-fde-dip.c (_Unwind_Find_FDE): Call find_fde_tail
|
||||
with 0 instead of NULL.
|
||||
|
||||
2022-02-24 Jose E. Marchesi <jose.marchesi@oracle.com>
|
||||
|
||||
PR target/104656
|
||||
* configure.ac: --disable-gcov if targetting bpf-*.
|
||||
* configure: Regenerate.
|
||||
|
||||
2022-01-25 Florian Weimer <fweimer@redhat.com>
|
||||
|
||||
PR libgcc/104207
|
||||
|
@ -1,3 +1,13 @@
|
||||
2022-02-24 Tom de Vries <tdevries@suse.de>
|
||||
|
||||
* testsuite/libgomp.c/declare-variant-3-sm30.c: New test.
|
||||
* testsuite/libgomp.c/declare-variant-3-sm35.c: New test.
|
||||
* testsuite/libgomp.c/declare-variant-3-sm53.c: New test.
|
||||
* testsuite/libgomp.c/declare-variant-3-sm70.c: New test.
|
||||
* testsuite/libgomp.c/declare-variant-3-sm75.c: New test.
|
||||
* testsuite/libgomp.c/declare-variant-3-sm80.c: New test.
|
||||
* testsuite/libgomp.c/declare-variant-3.h: New header file.
|
||||
|
||||
2022-02-22 Thomas Schwinge <thomas@codesourcery.com>
|
||||
|
||||
* testsuite/libgomp.oacc-fortran/privatized-ref-2.f90: Fix OpenACC
|
||||
|
@ -1,3 +1,9 @@
|
||||
2022-02-24 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
PR libstdc++/104602
|
||||
* include/std/source_location (source_location::current): Use
|
||||
deduced type of __builtin_source_location().
|
||||
|
||||
2022-02-22 Patrick Palka <ppalka@redhat.com>
|
||||
|
||||
* include/bits/ranges_base.h (__detail::__is_initializer_list):
|
||||
|
Loading…
x
Reference in New Issue
Block a user