• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Révisioneefbfbc7935806222ad634a44302b2b4c8781bd2 (tree)
l'heure2022-11-14 09:17:08
AuteurGCC Administrator <gccadmin@gcc....>
CommiterGCC Administrator

Message de Log

Daily bump.

Change Summary

Modification

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
1+2022-11-13 Philipp Tomsich <philipp.tomsich@vrull.eu>
2+
3+ * doc/contrib.rst: Update Jeff Law's email address.
4+
5+2022-11-13 Martin Liska <mliska@suse.cz>
6+
7+ PR web/107643
8+ * doc/baseconf.py: Set include_todo tag if INCLUDE_TODO env
9+ is set.
10+ * doc/indices-and-tables.rst: Use include_todo tag.
11+
112 2022-11-11 Martin Liska <mliska@suse.cz>
213
314 * doc/indices-and-tables.rst: Rename Indexes to Indices.
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,47 @@
1+2022-11-13 David Malcolm <dmalcolm@redhat.com>
2+
3+ PR analyzer/106235
4+ * doc/gcc/gcc-command-options/option-summary.rst: Add
5+ -Wno-analyzer-tainted-assertion.
6+ * doc/gcc/gcc-command-options/options-that-control-static-analysis.rst:
7+ Add -Wno-analyzer-tainted-assertion.
8+
9+2022-11-13 Philipp Tomsich <philipp.tomsich@vrull.eu>
10+
11+ * config/riscv/bitmanip.md: New define_split.
12+
13+2022-11-13 Philipp Tomsich <philipp.tomsich@vrull.eu>
14+
15+ * config/riscv/riscv.cc (riscv_rtx_costs): Recognize shNadd,
16+ if expressed as a plus and multiplication with a power-of-2.
17+ Split costing for MINUS from PLUS.
18+
19+2022-11-13 Martin Liska <mliska@suse.cz>
20+
21+ PR other/107620
22+ * configure: Regenerate.
23+ * configure.ac: Always set sphinx-build.
24+
25+2022-11-13 Joseph Myers <joseph@codesourcery.com>
26+
27+ * ginclude/float.h [__STDC_VERSION__ > 201710L]
28+ (__STDC_VERSION_FLOAT_H__): New macro.
29+ * ginclude/stdarg.h [__STDC_VERSION__ > 201710L]
30+ (__STDC_VERSION_STDARG_H__): New macro.
31+ * ginclude/stdatomic.h [__STDC_VERSION__ > 201710L]
32+ (__STDC_VERSION_STDATOMIC_H__): New macro.
33+ * ginclude/stddef.h [__STDC_VERSION__ > 201710L]
34+ (__STDC_VERSION_STDDEF_H__): New macro.
35+ * ginclude/stdint-gcc.h [__STDC_VERSION__ > 201710L]
36+ (__STDC_VERSION_STDINT_H__): New macro.
37+ * glimits.h [__STDC_VERSION__ > 201710L]
38+ (__STDC_VERSION_LIMITS_H__): New macro.
39+
40+2022-11-13 Jonathan Wakely <jwakely@redhat.com>
41+
42+ * doc/install/testing.rst: Remove anachronism about separate
43+ source tarballs.
44+
145 2022-11-12 Joseph Myers <joseph@codesourcery.com>
246
347 * dfp.cc (decimal_from_binary): Convert a canonical NaN to a
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
1-20221113
1+20221114
--- a/gcc/analyzer/ChangeLog
+++ b/gcc/analyzer/ChangeLog
@@ -1,3 +1,29 @@
1+2022-11-13 David Malcolm <dmalcolm@redhat.com>
2+
3+ PR analyzer/106235
4+ * analyzer.opt (Wanalyzer-tainted-assertion): New.
5+ * checker-path.cc (checker_path::fixup_locations): Pass false to
6+ pending_diagnostic::fixup_location.
7+ * diagnostic-manager.cc (get_emission_location): Pass true to
8+ pending_diagnostic::fixup_location.
9+ * pending-diagnostic.cc (pending_diagnostic::fixup_location): Add
10+ bool param.
11+ * pending-diagnostic.h (pending_diagnostic::fixup_location): Add
12+ bool param to decl.
13+ * sm-taint.cc (taint_state_machine::m_tainted_control_flow): New.
14+ (taint_diagnostic::describe_state_change): Drop "final".
15+ (class tainted_assertion): New.
16+ (taint_state_machine::taint_state_machine): Initialize
17+ m_tainted_control_flow.
18+ (taint_state_machine::alt_get_inherited_state): Support
19+ comparisons being tainted, based on their arguments.
20+ (is_assertion_failure_handler_p): New.
21+ (taint_state_machine::on_stmt): Complain about calls to assertion
22+ failure handlers guarded by an attacker-controller conditional.
23+ Detect attacker-controlled gcond conditionals and gswitch index
24+ values.
25+ (taint_state_machine::check_control_flow_arg_for_taint): New.
26+
127 2022-11-11 David Malcolm <dmalcolm@redhat.com>
228
329 * sm-fd.dot: Fix typo in comment.
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,13 @@
1+2022-11-13 José Rui Faustino de Sousa <jrfsousa@gmail.com>
2+
3+ PR fortran/94104
4+ * interface.cc (gfc_compare_actual_formal): Improve error message
5+ dependent on Fortran standard level.
6+
7+2021-11-06 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
8+
9+ * gfortran.h (gfc_check_include): Remove declaration.
10+
111 2022-11-12 Harald Anlauf <anlauf@gmx.de>
212
313 PR fortran/107444
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,44 @@
1+2022-11-13 David Malcolm <dmalcolm@redhat.com>
2+
3+ PR analyzer/106235
4+ * gcc.dg/analyzer/taint-assert-BUG_ON.c: New test.
5+ * gcc.dg/analyzer/taint-assert-macro-expansion.c: New test.
6+ * gcc.dg/analyzer/taint-assert.c: New test.
7+ * gcc.dg/analyzer/taint-assert-system-header.c: New test.
8+ * gcc.dg/analyzer/test-assert.h: New header.
9+ * gcc.dg/plugin/analyzer_gil_plugin.c
10+ (gil_diagnostic::fixup_location): Add bool param.
11+
12+2022-11-13 José Rui Faustino de Sousa <jrfsousa@gmail.com>
13+
14+ PR fortran/94104
15+ * gfortran.dg/parens_2.f90: Adjust to improved error message.
16+ * gfortran.dg/PR94104a.f90: New test.
17+ * gfortran.dg/PR94104b.f90: New test.
18+
19+2022-11-13 John David Anglin <danglin@gcc.gnu.org>
20+
21+ * g++.dg/guality/guality.exp: Skip on hppa*-*-hpux*.
22+ * gcc.dg/guality/guality.exp: Likewise.
23+ * gfortran.dg/guality/guality.exp: Likewise.
24+
25+2022-11-13 Philipp Tomsich <philipp.tomsich@vrull.eu>
26+
27+ * gcc.target/riscv/zbb-srai-andn.c: New test.
28+
29+2022-11-13 Philipp Tomsich <philipp.tomsich@vrull.eu>
30+
31+ * gcc.target/riscv/zba-shNadd-07.c: New test.
32+
33+2022-11-13 Joseph Myers <joseph@codesourcery.com>
34+
35+ * gcc.dg/c11-float-8.c, gcc.dg/c11-limits-1.c,
36+ gcc.dg/c11-stdarg-4.c, gcc.dg/c11-stdatomic-3.c,
37+ gcc.dg/c11-stddef-1.c, gcc.dg/c11-stdint-1.c,
38+ gcc.dg/c2x-float-13.c, gcc.dg/c2x-limits-1.c,
39+ gcc.dg/c2x-stdarg-5.c, gcc.dg/c2x-stdatomic-1.c,
40+ gcc.dg/c2x-stddef-1.c, gcc.dg/c2x-stdint-1.c: New tests.
41+
142 2022-11-12 Harald Anlauf <anlauf@gmx.de>
243
344 PR fortran/107444
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,9 @@
1+2022-11-13 Martin Liska <mliska@suse.cz>
2+
3+ PR other/107620
4+ * configure: Regenerate.
5+ * configure.ac: Always set sphinx-build.
6+
17 2022-11-12 Jakub Jelinek <jakub@redhat.com>
28
39 PR libgomp/107641
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,3 +1,9 @@
1+2022-11-13 Martin Liska <mliska@suse.cz>
2+
3+ PR other/107620
4+ * configure: Regenerate.
5+ * configure.ac: Always set sphinx-build.
6+
17 2022-11-10 Martin Liska <mliska@suse.cz>
28
39 * doc/conf.py: Add newline at last line.
--- a/libitm/ChangeLog
+++ b/libitm/ChangeLog
@@ -1,3 +1,9 @@
1+2022-11-13 Martin Liska <mliska@suse.cz>
2+
3+ PR other/107620
4+ * configure: Regenerate.
5+ * configure.ac: Always set sphinx-build.
6+
17 2022-11-10 Martin Liska <mliska@suse.cz>
28
39 * doc/conf.py: Add newline at last line.
--- a/libquadmath/ChangeLog
+++ b/libquadmath/ChangeLog
@@ -1,3 +1,9 @@
1+2022-11-13 Martin Liska <mliska@suse.cz>
2+
3+ PR other/107620
4+ * configure: Regenerate.
5+ * configure.ac: Always set sphinx-build.
6+
17 2022-11-10 Martin Liska <mliska@suse.cz>
28
39 * doc/conf.py: Add newline at last line.
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,47 @@
1+2022-11-13 Jonathan Wakely <jwakely@redhat.com>
2+
3+ * include/std/chrono (utc_clock, tai_clock, gps_clock): Define.
4+ (clock_time_conversion, clock_cast): Define.
5+ (sys_info, local_info): Define structs for timezone information.
6+ (nonexistent_local_time, ambiguous_local_time): Define
7+ exceptions for invalid times.
8+ (time_zone, time_zone_link, leap_second, zoned_traits, tzdb)
9+ (tzdb_list): Define classes representing time zones.
10+ (get_leap_second_info): Define new function returning leap
11+ second offset for a given time point.
12+ * testsuite/std/time/clock/gps/1.cc: New test.
13+ * testsuite/std/time/clock/tai/1.cc: New test.
14+ * testsuite/std/time/clock/utc/1.cc: New test.
15+
16+2022-11-13 Jonathan Wakely <jwakely@redhat.com>
17+
18+ PR libstdc++/104166
19+ * include/Makefile.am (std_headers): Add <format>.
20+ * include/Makefile.in: Regenerate.
21+ * include/precompiled/stdc++.h: Add <format>.
22+ * include/std/format: New file.
23+ * python/libstdcxx/v6/printers.py (StdFormatArgsPrinter): New
24+ printer for std::format_args.
25+ * testsuite/std/format/arguments/args.cc: New test.
26+ * testsuite/std/format/error.cc: New test.
27+ * testsuite/std/format/formatter.cc: New test.
28+ * testsuite/std/format/functions/format.cc: New test.
29+ * testsuite/std/format/functions/format_to_n.cc: New test.
30+ * testsuite/std/format/functions/size.cc: New test.
31+ * testsuite/std/format/functions/vformat_to.cc: New test.
32+ * testsuite/std/format/parse_ctx.cc: New test.
33+ * testsuite/std/format/string.cc: New test.
34+ * testsuite/std/format/string_neg.cc: New test.
35+
36+2022-11-13 Jonathan Wakely <jwakely@redhat.com>
37+
38+ * include/bits/charconv.h (__integer_to_chars_is_unsigned):
39+ New variable template.
40+ (__to_chars_len, __to_chars_10_impl): Use variable template in
41+ assertions to allow unsigned __int128 in strict mode.
42+ * include/std/charconv (__to_chars, __to_chars_16)
43+ (__to_chars_10, __to_chars_8, __to_chars_2): Likewise.
44+
145 2022-11-12 Jakub Jelinek <jakub@redhat.com>
246
347 PR libstdc++/107636