This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 0c016888ffd [PR104961] LRA: split hard reg for reload pseudo with clobber. new 1c1daca1cdf analyzer: add tests of boxed values [PR104943] new faacafd2306 analyzer: extend state-purging to locals [PR104943]
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/analyzer/analyzer.h | 1 + gcc/analyzer/engine.cc | 2 +- gcc/analyzer/program-point.cc | 40 ++ gcc/analyzer/program-point.h | 4 + gcc/analyzer/program-state.cc | 129 +++-- gcc/analyzer/program-state.h | 3 + gcc/analyzer/region-model.cc | 22 +- gcc/analyzer/region-model.h | 9 +- gcc/analyzer/state-purge.cc | 607 ++++++++++++++++++++- gcc/analyzer/state-purge.h | 110 +++- gcc/testsuite/gcc.dg/analyzer/boxed-malloc-1-29.c | 36 ++ gcc/testsuite/gcc.dg/analyzer/boxed-malloc-1.c | 476 ++++++++++++++++ gcc/testsuite/gcc.dg/analyzer/taint-alloc-5.c | 21 + .../gcc.dg/analyzer/torture/boxed-int-1.c | 170 ++++++ .../gcc.dg/analyzer/torture/boxed-ptr-1.c | 78 +++ 15 files changed, 1632 insertions(+), 76 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/analyzer/boxed-malloc-1-29.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/boxed-malloc-1.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/taint-alloc-5.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/torture/boxed-int-1.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/torture/boxed-ptr-1.c