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

--- Comment #6 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Martin Jambor <jamb...@gcc.gnu.org>:

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

commit r12-782-gca9bb74a5f856ccdceb4797f18b0a4ac8f49d069
Author: Martin Jambor <mjam...@suse.cz>
Date:   Thu May 13 23:26:32 2021 +0200

    tree-sra: Avoid refreshing into const base decls (PR 100453)

    When SRA transforms an assignment where the RHS is an aggregate decl
    that it creates replacements for, the (least efficient) fallback
    method of dealing with them is to store all the replacements back into
    the original decl and then let the original assignment takes itc
    sourse.

    That of course should not need to be done for TREE_READONLY bases
    which cannot change contents.  The SRA code handled this situation in
    one of two necessary places but only for DECL_IN_CONSTANT_POOL const
    decls, this patch modifies both to check TREE_READONLY.

    gcc/ChangeLog:

    2021-05-12  Martin Jambor  <mjam...@suse.cz>

            PR tree-optimization/100453
            * tree-sra.c (sra_modify_assign): All const base accesses do not
            need refreshing, not just those from decl_pool.
            (sra_modify_assign): Do not refresh into a const base decl.

    gcc/testsuite/ChangeLog:

    2021-05-12  Martin Jambor  <mjam...@suse.cz>

            PR tree-optimization/100453
            * gcc.dg/tree-ssa/pr100453.c: New test.

Reply via email to