https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108745

--- Comment #1 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by David Malcolm <dmalc...@gcc.gnu.org>:

https://gcc.gnu.org/g:aa601e30758581837c9ca7b738ec2810a18350f5

commit r13-5811-gaa601e30758581837c9ca7b738ec2810a18350f5
Author: David Malcolm <dmalc...@redhat.com>
Date:   Fri Feb 10 18:10:21 2023 -0500

    analyzer: don't warn for deref-before-check for checks in macros [PR108745]

    Integration testing shows this patch fixes all 9 known false positives
    from -Wanalyzer-deref-before-check within ImageMagick-7.1.0-57, and
    eliminates 34 further as-yet unassessed such diagnostics, without
    eliminating the 1 known true positive.

    This improves the rate of true positives for the warning from
    1.56% to 4.76% of the total:

    -Wanalyzer-deref-before-check: 1.56% -> 4.76% (GOOD: 1 BAD: 63->20)
        TRUE:  1
       FALSE: 15 ->  6 (-9)
                 ImageMagick-7.1.0-57:  9 ->  0 (-9)
        TODO: 48 -> 14 (-34)
                 ImageMagick-7.1.0-57: 21 ->  1 (-20)
                           qemu-7.2.0: 25 -> 11 (-14)

    gcc/analyzer/ChangeLog:
            PR analyzer/108745
            * sm-malloc.cc (deref_before_check::emit): Reject the warning if
            the check occurs within a macro defintion.

    gcc/testsuite/ChangeLog:
            PR analyzer/108745
            * gcc.dg/analyzer/deref-before-check-macro-pr108745.c: New test.
            * gcc.dg/analyzer/deref-before-check-macro.c: New test.

    Signed-off-by: David Malcolm <dmalc...@redhat.com>

Reply via email to