diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-04-04 00:16:38 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-04-04 00:16:38 +0000 |
commit | 88ce7fbcc7e9a1ffcd684bab53d1f46017860c25 (patch) | |
tree | 6e0682abbc9815330b8431854db9f4b4e70ad446 /gcc | |
parent | f37555028717cb1454ee258afdf68aea1c7a50e9 (diff) | |
download | gcc-88ce7fbcc7e9a1ffcd684bab53d1f46017860c25.zip gcc-88ce7fbcc7e9a1ffcd684bab53d1f46017860c25.tar.gz gcc-88ce7fbcc7e9a1ffcd684bab53d1f46017860c25.tar.bz2 |
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 69 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/po/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 14 |
4 files changed, 88 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 61eb527..4393283 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,72 @@ +2024-04-03 Mark Wielaard <mark@klomp.org> + + * config/i386/i386.opt.urls: Regenerate. + +2024-04-03 H.J. Lu <hjl.tools@gmail.com> + + PR tree-optimization/114115 + * cgraph.h (symtab_node): Add check_ifunc_callee_symtab_nodes. + (cgraph_node): Add called_by_ifunc_resolver. + * cgraphunit.cc (symbol_table::compile): Call + symtab_node::check_ifunc_callee_symtab_nodes. + * symtab.cc (check_ifunc_resolver): New. + (ifunc_ref_map): Likewise. + (is_caller_ifunc_resolver): Likewise. + (symtab_node::check_ifunc_callee_symtab_nodes): Likewise. + * tree-profile.cc (gimple_gen_ic_func_profiler): Disable indirect + call profiling for IFUNC resolvers and their callees. + +2024-04-03 Tobias Burnus <tburnus@baylibre.com> + + * lto-wrapper.cc (compile_offload_image): Prefix 'offload_args' + suffix by the target name. + +2024-04-03 Tobias Burnus <tburnus@baylibre.com> + + * doc/install.texi (amdgcn-*-amdhsa): Update Newlib recommendation + and update wording for LLVM 18 release. + +2024-04-03 Tobias Burnus <tburnus@baylibre.com> + + PR other/111966 + * config/gcn/mkoffload.cc (get_arch): New; moved -march= flag + handling from ... + (main): ... here; call it to handle --with-arch config option + and -march= commandline. + +2024-04-03 Jakub Jelinek <jakub@redhat.com> + + PR middle-end/114552 + * expr.cc (emit_push_insn): Only use store_constructor for + immediate_const_ctor_p if int_expr_size matches size. + +2024-04-03 Richard Biener <rguenther@suse.de> + + PR tree-optimization/114557 + PR tree-optimization/114480 + * tree-phinodes.cc (release_phi_node): Return PHIs from + allocation buckets not covered by free_phinodes to GC. + (remove_phi_node): Release the PHI LHS before freeing the + PHI node. + * tree-vect-loop.cc (vectorizable_live_operation): Get PHI lhs + before releasing it. + +2024-04-03 Jiahao Xu <xujiahao@loongson.cn> + + * config/loongarch/lasx.md: Remove unused code. + * config/loongarch/loongarch-protos.h + (loongarch_split_lsx_copy_d): Remove. + (loongarch_split_lsx_insert_d): Ditto. + (loongarch_split_lsx_fill_d): Ditto. + * config/loongarch/loongarch.cc + (loongarch_split_lsx_copy_d): Ditto. + (loongarch_split_lsx_insert_d): Ditto. + (loongarch_split_lsx_fill_d): Ditto. + * config/loongarch/lsx.md (lsx_vpickve2gr_du): Remove splitter. + (lsx_vpickve2gr_<lsxfmt_f>): Ditto. + (abs<mode>2): Remove expander. + (vabs<mode>2): Rename 2 abs<mode>2. + 2024-04-02 Christophe Lyon <christophe.lyon@linaro.org> * config/aarch64/aarch64-option-extensions.def: Fix comment. diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 154a306..9bcd31d 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20240403 +20240404 diff --git a/gcc/po/ChangeLog b/gcc/po/ChangeLog index 2f02ef3..e98b9fb 100644 --- a/gcc/po/ChangeLog +++ b/gcc/po/ChangeLog @@ -1,3 +1,7 @@ +2024-04-03 Joseph Myers <josmyers@redhat.com> + + * sv.po: Update. + 2024-03-25 Joseph Myers <josmyers@redhat.com> * de.po: Update. diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 37cdcae..2107bf4 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,17 @@ +2024-04-03 H.J. Lu <hjl.tools@gmail.com> + + PR tree-optimization/114115 + * gcc.dg/pr114115.c: New test. + +2024-04-03 Jakub Jelinek <jakub@redhat.com> + + PR middle-end/114552 + * gcc.c-torture/execute/pr114552.c: New test. + +2024-04-03 Jiahao Xu <xujiahao@loongson.cn> + + * gcc.target/loongarch/vector/lsx/lsx-abs.c: New test. + 2024-04-02 Martin Uecker <uecker@tugraz.at> PR c/114361 |