diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-11-18 00:17:28 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-11-18 00:17:28 +0000 |
commit | 24da863403a173e336cb6723b8ee64bd6ee74e85 (patch) | |
tree | fbd866a12c57792fff72c401a9035660a51e8d64 /gcc | |
parent | db348caef98b120262db91cab5f10713ce1570f3 (diff) | |
download | gcc-24da863403a173e336cb6723b8ee64bd6ee74e85.zip gcc-24da863403a173e336cb6723b8ee64bd6ee74e85.tar.gz gcc-24da863403a173e336cb6723b8ee64bd6ee74e85.tar.bz2 |
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 33 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/c-family/ChangeLog | 21 | ||||
-rw-r--r-- | gcc/c/ChangeLog | 11 | ||||
-rw-r--r-- | gcc/cp/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 13 |
6 files changed, 87 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d422d53..4213c77 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,36 @@ +2024-11-17 Florian Weimer <fweimer@redhat.com> + + PR c/95445 + * doc/invoke.texi: Document -Wdeprecated-non-prototype. + +2024-11-17 Jason Merrill <jason@redhat.com> + + * doc/cppopts.texi: Document -fsearch-include-path. + * doc/invoke.texi: Mention it for modules. + +2024-11-17 Jan Hubicka <hubicka@ucw.cz> + + * ipa-fnsummary.cc (find_necessary_statements): ASM statements are + necessary. + +2024-11-17 Jan Hubicka <hubicka@ucw.cz> + + * ipa-modref.cc (modref_summary::useful_p): const/pure implies + determinism. + (modref_summary_lto::useful_p): Likewise. + (ignore_nondeterminism_p): Add CALLEE_FNTYPE parameter; check for + reproducible/unsequenced + (modref_access_analysis::record_access_p): Use ignore_nondeterminism_p + when handling volatile accesses. + (modref_access_analysis::get_access_for_fnspec): Update. + (modref_access_analysis::process_fnspec): Cleanup handling of NOVOPS. + (modref_access_analysis::analyze_call): Use ignore_nondeterminism_p + when handling asm statements. + (modref_access_analysis::analyze_stmt): Update. + (propagate_unknown_call): Update. + (modref_propagate_in_scc): Update. + (ipa_merge_modref_summary_after_inlining): Update. + 2024-11-16 Jan Hubicka <hubicka@ucw.cz> * ipa-modref.cc (ipa_modref_callee_reads_no_memory_p): New function. diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index b57dfce..7d15800 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20241117 +20241118 diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 412d474..8f9bbb9 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,24 @@ +2024-11-17 Jason Merrill <jason@redhat.com> + + * c.opt.urls: Regenerate. + +2024-11-17 Florian Weimer <fweimer@redhat.com> + + PR c/95445 + * c-opts.cc (c_common_post_options): Initialize + warn_deprecated_non_prototype. + * c.opt (Wdeprecated-non-prototype): New option. + * c.opt.urls: Regenerate. + +2024-11-17 Jason Merrill <jason@redhat.com> + + * c-ppoutput.cc (preprocess_file): Don't set directives_only here. + +2024-11-17 Jason Merrill <jason@redhat.com> + + * c.opt: Add -fsearch-include-path. + * c-opts.cc (c_common_post_options): Handle it. + 2024-11-15 Joseph Myers <josmyers@redhat.com> * c-opts.cc (c_common_init_options): Default to C23. diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index 813e3d8..8963bbe 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,3 +1,14 @@ +2024-11-17 Florian Weimer <fweimer@redhat.com> + + PR c/95445 + * c-decl.cc (start_function): Warn about parameters + after parameter-less declaration. + * c-typeck.cc (build_function_call_vec): Pass fntype + to convert_arguments. + (convert_arguments): Change argument to fntype and + compute typelist. Warn about parameter list mismatches + on first parameter. + 2024-11-16 Martin Uecker <uecker@tugraz.at> PR c/117548 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 5432b58..6980c6d 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,11 @@ +2024-11-17 Jason Merrill <jason@redhat.com> + + * module.cc (module_preprocess_options): Set directives_only here. + +2024-11-17 Jason Merrill <jason@redhat.com> + + * module.cc (module_preprocess_options): Don't override it. + 2024-11-16 Jan Hubicka <hubicka@ucw.cz> * decl.cc (cxx_build_operator_new): Break out from ... diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 47d5721..a07a478 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,16 @@ +2024-11-17 Florian Weimer <fweimer@redhat.com> + + PR c/95445 + * gcc.dg/Wdeprecated-non-prototype-1.c: New test. + * gcc.dg/Wdeprecated-non-prototype-2.c: New test. + * gcc.dg/Wdeprecated-non-prototype-3.c: New test. + * gcc.dg/Wdeprecated-non-prototype-4.c: New test. + +2024-11-17 Jan Hubicka <hubicka@ucw.cz> + + PR tree-optimization/109442 + * g++.dg/tree-ssa/pr109442.C: New test. + 2024-11-16 Jan Hubicka <hubicka@ucw.cz> * g++.dg/tree-ssa/pr109442.C: New file. |