[Bug other/1] Test of new GCC GNATS db.

cvs-commit at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Wed Apr 1 07:45:49 GMT 2020


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

--- Comment #8 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Jakub Jelinek <jakub@gcc.gnu.org>:

https://gcc.gnu.org/g:9ecb3ecc8cc0497a2cc815589c59547fd5af8512

commit r10-7493-g9ecb3ecc8cc0497a2cc815589c59547fd5af8512
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Wed Apr 1 09:44:59 2020 +0200

    objsz: Don't call replace_uses_by on SSA_NAME_OCCURS_IN_ABNORMAL_PHI
[PR94423]

    The following testcase ICEs because the objsz pass calls replace_uses_by
    on SSA_NAME_OCCURS_IN_ABNORMAL_PHI SSA_NAME.  The following patch instead
    of that calls replace_call_with_value, which will turn it into
      xyz_123(ab) = 234;

    2020-04-01  Jakub Jelinek  <jakub@redhat.com>

            PR middle-end/94423
            * tree-object-size.c (pass_object_sizes::execute): Don't call
            replace_uses_by for SSA_NAME_OCCURS_IN_ABNORMAL_PHI lhs, instead
            call replace_call_with_value.

            * gcc.dg/ubsan/pr94423.c: New test.


More information about the Gcc-bugs mailing list