Daily bump.

This commit is contained in:
GCC Administrator 2022-07-29 00:16:21 +00:00
parent 872693eebb
commit af086d1911
6 changed files with 172 additions and 1 deletions

View File

@ -1,3 +1,49 @@
2022-07-28 David Malcolm <dmalcolm@redhat.com>
PR analyzer/105893
* doc/invoke.texi: Add -Wanalyzer-putenv-of-auto-var.
2022-07-28 David Malcolm <dmalcolm@redhat.com>
* doc/invoke.texi (-fdiagnostics-show-cwe): Use uref rather than
url.
(Static Analyzer Options): Likewise. Add urefs for all of the
warnings that have associated CWE identifiers.
2022-07-28 Maciej W. Rozycki <macro@embecosm.com>
* doc/implement-c.texi (Floating point implementation): Mention
`-fno-trapping-math' in the context of FENV_ACCESS pragma.
* doc/invoke.texi (Optimize Options): Clarify FENV_ACCESS pragma
implication in the descriptions of `-fno-trapping-math' and
`-frounding-math'.
2022-07-28 Maciej W. Rozycki <macro@embecosm.com>
* config/riscv/riscv.md (UNSPECV_FSNVSNAN): New constant.
(QUIET_PATTERN): New int attribute.
(f<quiet_pattern>_quiet<ANYF:mode><X:mode>4): Emit the intended
RTL insns entirely within the preparation statements.
(*f<quiet_pattern>_quiet<ANYF:mode><X:mode>4_default)
(*f<quiet_pattern>_quiet<ANYF:mode><X:mode>4_snan): Remove
insns.
(*riscv_fsnvsnan<mode>2): New insn.
2022-07-28 Richard Biener <rguenther@suse.de>
PR middle-end/106457
* tree.cc (array_at_struct_end_p): Handle array objects
specially.
2022-07-28 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/106099
* internal-fn.def (TRAP): New internal fn.
* internal-fn.h (expand_TRAP): Declare.
* internal-fn.cc (expand_TRAP): Define.
* gimple.cc (gimple_build_builtin_unreachable): For BUILT_IN_TRAP,
use internal fn rather than builtin.
2022-07-27 Andrew Carlotti <andrew.carlotti@arm.com>
* doc/loop.texi: Refer to LOOPS_HAVE_RECORDED_EXITS instead.

View File

@ -1 +1 @@
20220728
20220729

View File

@ -1,3 +1,22 @@
2022-07-28 David Malcolm <dmalcolm@redhat.com>
PR analyzer/105893
* analyzer.opt (Wanalyzer-putenv-of-auto-var): New.
* region-model-impl-calls.cc (class putenv_of_auto_var): New.
(region_model::impl_call_putenv): New.
* region-model.cc (region_model::on_call_pre): Handle putenv.
* region-model.h (region_model::impl_call_putenv): New decl.
2022-07-28 David Malcolm <dmalcolm@redhat.com>
* sm-malloc.cc (free_of_non_heap::emit): Add comment about CWE.
* sm-taint.cc (tainted_size::emit): Likewise.
2022-07-28 David Malcolm <dmalcolm@redhat.com>
* region.h: Add notes to the comment describing the region
class hierarchy.
2022-07-27 Immad Mir <mirimmad@outlook.com>
PR analyzer/106286

View File

@ -1,3 +1,79 @@
2022-07-28 David Malcolm <dmalcolm@redhat.com>
* docs/internals/index.rst: Remove reference to ".c" extensions
of source files.
2022-07-28 Martin Liška <mliska@suse.cz>
* docs/cp/intro/tutorial02.rst:
Shorten the assembly example so that there is not slider.
* docs/cp/intro/tutorial04.rst: Likewise.
* docs/intro/tutorial02.rst: Likewise.
* docs/intro/tutorial04.rst: Likewise.
* docs/topics/contexts.rst: Likewise.
2022-07-28 marxin <mliska@suse.cz>
* docs/index.rst: Remove reference to module index
as we don't emit any.
2022-07-28 marxin <mliska@suse.cz>
* docs/cp/intro/tutorial02.rst: Use :expr:`type *` for pointers to a type
* docs/cp/topics/asm.rst: Likewise.
* docs/cp/topics/contexts.rst: Likewise.
* docs/cp/topics/expressions.rst: Likewise.
* docs/cp/topics/functions.rst: Likewise.
* docs/cp/topics/objects.rst: Likewise.
* docs/intro/tutorial02.rst: Likewise.
* docs/intro/tutorial03.rst: Likewise.
* docs/intro/tutorial04.rst: Likewise.
* docs/intro/tutorial05.rst: Likewise.
* docs/topics/compilation.rst: Likewise.
* docs/topics/contexts.rst: Likewise.
* docs/topics/objects.rst: Likewise.
2022-07-28 marxin <mliska@suse.cz>
* docs/cp/intro/tutorial04.rst: Use list-table.
* docs/intro/tutorial04.rst: Likewise.
* docs/intro/tutorial05.rst: Likewise.
* docs/topics/compilation.rst: Likewise.
* docs/topics/expressions.rst: Likewise.
* docs/topics/types.rst: Likewise.
2022-07-28 marxin <mliska@suse.cz>
* docs/cp/topics/expressions.rst: Compact so that the generated
output is also more compact.
2022-07-28 marxin <mliska@suse.cz>
* docs/cp/intro/tutorial02.rst: Use proper reference.
* docs/cp/topics/contexts.rst: Likewise.
* docs/cp/topics/functions.rst: Put `class` directive before a
function as it is not allowed declaring a class in a fn.
* docs/cp/topics/types.rst: Add template keyword.
* docs/examples/tut04-toyvm/toyvm.c (toyvm_function_compile):
Add removed comment used for code snippet ending detection.
* docs/intro/tutorial04.rst: Fix to match the real comment.
2022-07-28 marxin <mliska@suse.cz>
* docs/cp/topics/expressions.rst: Use :expr: for basic types.
* docs/topics/compilation.rst: Likewise.
* docs/topics/expressions.rst: Likewise.
* docs/topics/function-pointers.rst: Likewise.
2022-07-28 marxin <mliska@suse.cz>
* docs/conf.py: Add needs_sphinx = '3.0' where c:type was added.
* docs/index.rst: Remove note about it.
* docs/topics/compilation.rst: Use enum directive and reference.
* docs/topics/contexts.rst: Likewise.
* docs/topics/expressions.rst: Likewise.
* docs/topics/functions.rst: Likewise.
2022-07-14 Jonathan Wakely <jwakely@redhat.com>
* jit-recording.h (recording::memento): Define copy constructor

View File

@ -1,3 +1,28 @@
2022-07-28 David Malcolm <dmalcolm@redhat.com>
PR analyzer/105893
* gcc.dg/analyzer/putenv-1.c: New test.
2022-07-28 Maciej W. Rozycki <macro@embecosm.com>
* gcc.target/riscv/fle-ieee.c: New test.
* gcc.target/riscv/fle-snan.c: New test.
* gcc.target/riscv/fle.c: New test.
* gcc.target/riscv/flef-ieee.c: New test.
* gcc.target/riscv/flef-snan.c: New test.
* gcc.target/riscv/flef.c: New test.
* gcc.target/riscv/flt-ieee.c: New test.
* gcc.target/riscv/flt-snan.c: New test.
* gcc.target/riscv/flt.c: New test.
* gcc.target/riscv/fltf-ieee.c: New test.
* gcc.target/riscv/fltf-snan.c: New test.
* gcc.target/riscv/fltf.c: New test.
2022-07-28 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/106099
* gcc.dg/ubsan/pr106099.c: New test.
2022-07-27 Lewis Hyatt <lhyatt@gmail.com>
* c-c++-common/pragma-diag-14.c: New test.

View File

@ -1,3 +1,8 @@
2022-07-28 Martin Liska <mliska@suse.cz>
* update_web_docs_git: Use sphinx-build from a venv so that
we can use a recent version.
2022-05-20 Richard Biener <rguenther@suse.de>
* crontab: Disable snapshots from the gcc-9 branch.