mirror of git://gcc.gnu.org/git/gcc.git
Daily bump.
This commit is contained in:
parent
fbd7665360
commit
ed97448899
|
@ -1,3 +1,7 @@
|
|||
2022-07-01 Haochen Jiang <haochen.jiang@intel.com>
|
||||
|
||||
* MAINTAINERS (Write After Approval): Add myself.
|
||||
|
||||
2022-06-30 Cui,Lili <lili.cui@intel.com>
|
||||
|
||||
Revert:
|
||||
|
|
112
gcc/ChangeLog
112
gcc/ChangeLog
|
@ -1,3 +1,115 @@
|
|||
2022-07-01 Aldy Hernandez <aldyh@redhat.com>
|
||||
|
||||
* wide-int.h (struct trailing_wide_ints): Add m_num_elements.
|
||||
(trailing_wide_ints::set_precision): Add num_elements argument.
|
||||
(trailing_wide_ints::extra_size): Same.
|
||||
|
||||
2022-07-01 Uroš Bizjak <ubizjak@gmail.com>
|
||||
|
||||
* config/i386/i386.md (*andn<mode>3_doubleword_bmi):
|
||||
Use "r" constraint for operand 1.
|
||||
|
||||
2022-07-01 Richard Biener <rguenther@suse.de>
|
||||
|
||||
* tree-into-ssa.cc (rewrite_update_dom_walker::before_dom_children):
|
||||
Do not look at interesting_blocks which is a copy of
|
||||
blocks_to_update.
|
||||
(update_ssa): Do not initialize it.
|
||||
(pass_build_ssa::execute): Set interesting_blocks to NULL
|
||||
after releasing it.
|
||||
|
||||
2022-07-01 Richard Biener <rguenther@suse.de>
|
||||
|
||||
* tree-ssa-sccvn.cc (vn_reference_lookup_3): Revert
|
||||
back to using maybe_ne (off, -1).
|
||||
|
||||
2022-07-01 Richard Biener <rguenther@suse.de>
|
||||
|
||||
* tree-ssa-sccvn.cc (vn_nary_op_insert_into): Make
|
||||
checking dominance check conditional on flag_checking.
|
||||
|
||||
2022-07-01 Tobias Burnus <tobias@codesourcery.com>
|
||||
|
||||
* config/gcn/gcn-protos.h (print_operand_address): Remove register
|
||||
keyword on 'rtx addr' argument.
|
||||
|
||||
2022-07-01 Roger Sayle <roger@nextmovesoftware.com>
|
||||
Uroš Bizjak <ubizjak@gmail.com>
|
||||
|
||||
* config/i386/i386.md (*andn<mode>3_doubleword_bmi): Add constraints
|
||||
to post-reload define_insn_and_split.
|
||||
|
||||
2022-07-01 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR middle-end/106144
|
||||
* wide-int.cc (wi::shifted_mask): If end >= prec, return right after
|
||||
emitting element for shift or if shift is 0 first element after start.
|
||||
(wide_int_cc_tests): Add tests for equivalency of wi::mask and
|
||||
wi::shifted_mask with 0 start.
|
||||
|
||||
2022-07-01 Roger Sayle <roger@nextmovesoftware.com>
|
||||
|
||||
PR target/106122
|
||||
* config/i386/i386.md (peephole2): Avoid generating pop %esp
|
||||
when optimizing for size.
|
||||
|
||||
2022-07-01 Roger Sayle <roger@nextmovesoftware.com>
|
||||
Uroš Bizjak <ubizjak@gmail.com>
|
||||
|
||||
* config/i386/i386.md (general_szext_operand): Add TImode
|
||||
support using x86_64_hilo_general_operand predicate.
|
||||
(*cmp<dwi>_doubleword): Use x86_64_hilo_general_operand predicate.
|
||||
(*add<dwi>3_doubleword): Improved optimization of zero addition.
|
||||
(and<mode>3): Use SDWIM mode iterator to add support for double
|
||||
word bit-wise AND in TImode. Use force_reg when double word
|
||||
immediate operand isn't x86_64_hilo_general_operand.
|
||||
(and<dwi>3_doubleword): Generalized from anddi3_doubleword and
|
||||
converted into a post-reload splitter.
|
||||
(*andndi3_doubleword): Previous define_insn deleted.
|
||||
(*andn<mode>3_doubleword_bmi): New define_insn_and_split for
|
||||
TARGET_BMI that splits post-reload.
|
||||
(*andn<mode>3_doubleword): New define_insn_and_split for
|
||||
!TARGET_BMI, that lowers/splits before reload.
|
||||
(<any_or><mode>3): Use SDWIM mode iterator to add suppport for
|
||||
double word bit-wise XOR and bit-wise IOR in TImode. Use
|
||||
force_reg when double word immediate operand isn't
|
||||
x86_64_hilo_general_operand.
|
||||
(*<any_or>di3_doubleword): Generalized from <any_or>di3_doubleword.
|
||||
(one_cmpl<mode>2): Use SDWIM mode iterator to add support for
|
||||
double word bit-wise NOT in TImode.
|
||||
(one_cmpl<dwi>2_doubleword): Generalize from one_cmpldi2_doubleword
|
||||
and converted into a post-reload splitter.
|
||||
|
||||
2022-07-01 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
PR middle-end/105874
|
||||
* expr.cc (expand_expr_real_1) <normal_inner_ref>: Force
|
||||
EXPAND_MEMORY for the expansion of the inner reference only
|
||||
in the usual cases where a memory reference is required.
|
||||
|
||||
2022-07-01 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/106131
|
||||
* tree-ssa-sccvn.cc (vn_reference_lookup_3): Force alias-set
|
||||
zero when offsetting the read looking through an aggregate
|
||||
copy.
|
||||
|
||||
2022-07-01 Martin Liska <mliska@suse.cz>
|
||||
|
||||
PR tree-optimization/106126
|
||||
* gimple-if-to-switch.cc (struct condition_info): Save
|
||||
has_side_effect.
|
||||
(find_conditions): Parse all BBs.
|
||||
(pass_if_to_switch::execute): Allow only side effects for first
|
||||
BB.
|
||||
|
||||
2022-07-01 Haochen Jiang <haochen.jiang@intel.com>
|
||||
|
||||
* common/config/i386/i386-common.cc (OPTION_MASK_ISA2_AVX512F_UNSET):
|
||||
Add OPTION_MASK_ISA2_AVX512BW_UNSET, remove
|
||||
OPTION_MASK_ISA2_AVX512BF16_UNSET and
|
||||
OPTION_MASK_ISA2_AVX512FP16_UNSET.
|
||||
|
||||
2022-06-30 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
PR lto/106129
|
||||
|
|
|
@ -1 +1 @@
|
|||
20220701
|
||||
20220702
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2022-07-01 Marek Polacek <polacek@redhat.com>
|
||||
|
||||
PR c++/106111
|
||||
* c-common.h (enum rid): Update RID_LAST_CXX20.
|
||||
|
||||
2022-06-30 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* known-headers.cc (get_stdlib_header_for_name): Add <time.h>
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2022-07-01 Tobias Burnus <tobias@codesourcery.com>
|
||||
|
||||
* c-parser.cc (c_parser_omp_target_enter_data,
|
||||
c_parser_omp_target_exit_data): Accept tofrom
|
||||
map-type modifier but use 'to' / 'from' internally.
|
||||
|
||||
2022-06-16 David Malcolm <dmalcolm@redhat.com>
|
||||
|
||||
* c-decl.cc (implicitly_declare): Add auto_diagnostic_group to
|
||||
|
|
|
@ -1,3 +1,46 @@
|
|||
2022-07-01 Lewis Hyatt <lhyatt@gmail.com>
|
||||
|
||||
* parser.cc (cp_token_is_module_directive): New function
|
||||
refactoring common code.
|
||||
(cp_parser_skip_to_closing_parenthesis_1): Use the new function.
|
||||
(cp_parser_skip_to_end_of_statement): Likewise.
|
||||
(cp_parser_skip_to_end_of_block_or_statement): Likewise.
|
||||
(cp_parser_declaration): Likewise.
|
||||
|
||||
2022-07-01 Marek Polacek <polacek@redhat.com>
|
||||
|
||||
PR c++/105550
|
||||
* constexpr.cc (cxx_eval_conditional_expression): Strip TARGET_EXPRs.
|
||||
|
||||
2022-07-01 Tobias Burnus <tobias@codesourcery.com>
|
||||
|
||||
* parser.cc (cp_parser_omp_target_enter_data,
|
||||
cp_parser_omp_target_exit_data): Accept tofrom
|
||||
map-type modifier but use 'to' / 'from' internally.
|
||||
|
||||
2022-07-01 Marek Polacek <polacek@redhat.com>
|
||||
|
||||
PR c++/106111
|
||||
* parser.cc (cp_lexer_get_preprocessor_token): Also warn about
|
||||
RID_ALIGNOF, RID_ALIGNAS, RID_THREAD.
|
||||
|
||||
2022-07-01 Jason Merrill <jason@redhat.com>
|
||||
|
||||
PR c++/105779
|
||||
* call.cc (resolve_args): Use complain.
|
||||
|
||||
2022-07-01 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* parser.cc (missing_template_diag): Split out...
|
||||
(cp_parser_id_expression): ...from here.
|
||||
|
||||
2022-07-01 Jason Merrill <jason@redhat.com>
|
||||
|
||||
PR c++/106024
|
||||
* parser.cc (missing_template_diag): Factor out...
|
||||
(cp_parser_id_expression): ...from here.
|
||||
(cp_parser_lookup_name): Don't look in dependent object_type.
|
||||
|
||||
2022-06-30 Nathan Sidwell <nathan@acm.org>
|
||||
|
||||
* module.cc (module_state::write_define): Drop located param.
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
2022-07-01 Tobias Burnus <tobias@codesourcery.com>
|
||||
|
||||
* dump-parse-tree.cc (show_omp_namelist): For the map-type,
|
||||
also handle the always modifer and release/delete.
|
||||
* openmp.cc (resolve_omp_clauses): Accept tofrom
|
||||
map-type modifier for target enter/exit data,
|
||||
but use 'to' / 'from' internally.
|
||||
|
||||
2022-06-30 Harald Anlauf <anlauf@gmx.de>
|
||||
Steven G. Kargl <kargl@gcc.gnu.org>
|
||||
|
||||
|
|
|
@ -1,3 +1,53 @@
|
|||
2022-07-01 Marek Polacek <polacek@redhat.com>
|
||||
|
||||
PR c++/105550
|
||||
* g++.dg/cpp1y/nsdmi-aggr16.C: Remove FIXME.
|
||||
* g++.dg/cpp1y/nsdmi-aggr17.C: Remove FIXME.
|
||||
* g++.dg/cpp0x/constexpr-elision1.C: New test.
|
||||
* g++.dg/cpp1y/constexpr-elision1.C: New test.
|
||||
|
||||
2022-07-01 Tobias Burnus <tobias@codesourcery.com>
|
||||
|
||||
* c-c++-common/gomp/target-data-2.c: New test.
|
||||
* c-c++-common/gomp/target-data-3.c: New test.
|
||||
* gfortran.dg/gomp/target-data-1.f90: New test.
|
||||
* gfortran.dg/gomp/target-data-2.f90: New test.
|
||||
|
||||
2022-07-01 Marek Polacek <polacek@redhat.com>
|
||||
|
||||
PR c++/106111
|
||||
* g++.dg/cpp0x/keywords1.C: New test.
|
||||
* g++.dg/cpp2a/keywords1.C: New test.
|
||||
|
||||
2022-07-01 Jason Merrill <jason@redhat.com>
|
||||
|
||||
PR c++/106024
|
||||
* g++.dg/cpp2a/lambda-generic10.C: New test.
|
||||
|
||||
2022-07-01 Kito Cheng <kito.cheng@sifive.com>
|
||||
|
||||
Revert:
|
||||
2022-06-30 Kito Cheng <kito.cheng@sifive.com>
|
||||
|
||||
PR testsuite/102690
|
||||
* g++.dg/warn/Warray-bounds-16.C: XFAIL only on lp64 for the
|
||||
warning.
|
||||
|
||||
2022-07-01 Roger Sayle <roger@nextmovesoftware.com>
|
||||
|
||||
PR target/106122
|
||||
* gcc.target/i386/pr106122.c: New test case.
|
||||
|
||||
2022-07-01 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/106131
|
||||
* g++.dg/torture/pr106131.C: New testcase.
|
||||
|
||||
2022-07-01 Martin Liska <mliska@suse.cz>
|
||||
|
||||
PR tree-optimization/106126
|
||||
* gcc.dg/tree-ssa/pr106126.c: New test.
|
||||
|
||||
2022-06-30 Harald Anlauf <anlauf@gmx.de>
|
||||
Steven G. Kargl <kargl@gcc.gnu.org>
|
||||
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2022-07-01 Tobias Burnus <tobias@codesourcery.com>
|
||||
|
||||
* libgomp.texi (OpenMP 5.2): Mark target enter/exit data
|
||||
with fromto as implemented.
|
||||
|
||||
2022-06-28 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* acinclude.m4: Fix typo in mold linker detection.
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2022-07-01 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR demangler/105039
|
||||
* rust-demangle.c (demangle_const): Add recursion limit.
|
||||
|
||||
2022-06-26 Simon Marchi <simon.marchi@efficios.com>
|
||||
|
||||
* configure.ac: Add AC_CONFIG_MACRO_DIRS call.
|
||||
|
|
|
@ -1,3 +1,50 @@
|
|||
2022-07-01 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
PR libstdc++/106162
|
||||
* include/Makefile.am (largefile-config.h): Add
|
||||
stamp-${host_alias} prerequisite.
|
||||
* include/Makefile.in: Regenerate.
|
||||
|
||||
2022-07-01 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* include/bits/fs_ops.h: Add nodiscard to all pure functions.
|
||||
* include/experimental/bits/fs_ops.h: Likewise.
|
||||
* testsuite/27_io/filesystem/operations/all.cc: Do not discard
|
||||
results of absolute and canonical.
|
||||
* testsuite/27_io/filesystem/operations/absolute.cc: Cast
|
||||
discarded result to void.
|
||||
* testsuite/27_io/filesystem/operations/canonical.cc: Likewise.
|
||||
* testsuite/27_io/filesystem/operations/exists.cc: Likewise.
|
||||
* testsuite/27_io/filesystem/operations/is_empty.cc: Likewise.
|
||||
* testsuite/27_io/filesystem/operations/read_symlink.cc:
|
||||
Likewise.
|
||||
* testsuite/27_io/filesystem/operations/status.cc: Likewise.
|
||||
* testsuite/27_io/filesystem/operations/symlink_status.cc:
|
||||
Likewise.
|
||||
* testsuite/27_io/filesystem/operations/temp_directory_path.cc:
|
||||
Likewise.
|
||||
* testsuite/experimental/filesystem/operations/canonical.cc:
|
||||
Likewise.
|
||||
* testsuite/experimental/filesystem/operations/exists.cc:
|
||||
Likewise.
|
||||
* testsuite/experimental/filesystem/operations/is_empty.cc:
|
||||
Likewise.
|
||||
* testsuite/experimental/filesystem/operations/read_symlink.cc:
|
||||
Likewise.
|
||||
* testsuite/experimental/filesystem/operations/temp_directory_path.cc:
|
||||
Likewise.
|
||||
|
||||
2022-07-01 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
||||
|
||||
* configure: Regnerate.
|
||||
* configure.ac (newlib, *-rtems*): Enable TLS support for all RTEMS
|
||||
targets except bfin, lm32, mips, moxie, or1k, and v850.
|
||||
For all RTEMS targets, define HAVE_ALIGNED_ALLOC, HAVE_AT_QUICK_EXIT,
|
||||
HAVE_LINK, HAVE_POLL, HAVE_QUICK_EXIT, HAVE_READLINK, HAVE_SETENV,
|
||||
HAVE_SLEEP, HAVE_SOCKATMARK, HAVE_STRERROR_L, HAVE_SYMLINK,
|
||||
HAVE_TRUNCATE, and HAVE_USLEEP.
|
||||
* crossconfig.m4 (*-rtems*): Remove.
|
||||
|
||||
2022-06-30 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* include/bits/utility.h: Fix comment typos.
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
2022-07-01 Pekka Seppänen <pexu@gcc.mail.kapsi.fi>
|
||||
|
||||
PR lto/106118
|
||||
* configure.ac: Move -pthread from here...
|
||||
* Makefile.am: ...to here.
|
||||
* configure: Regenerate.
|
||||
* Makefile.in: Likewise.
|
||||
|
||||
2022-06-27 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* lto-plugin.c (plugin_lock): New lock.
|
||||
|
|
Loading…
Reference in New Issue