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

--- Comment #2 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Patrick Palka <ppa...@gcc.gnu.org>:

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

commit r10-6571-ga6ee556c7659877bb59b719f11ca2153e86ded59
Author: Patrick Palka <ppa...@redhat.com>
Date:   Sun Feb 9 22:23:25 2020 -0500

    c++: Fix return type deduction with an abbreviated function template

    This patch fixes two issues with return type deduction in the presence of
an
    abbreviated function template.

    The first issue (PR 69448) is that if a placeholder auto return type
contains
    any modifiers such as & or *, then the abbreviated function template
    compensation in splice_late_return_type does not get performed for the
    underlying auto node, leading to incorrect return type deduction.  This
happens
    because splice_late_return_type does not consider that a placeholder auto
return
    type might have modifiers.  To fix this it seems we need to look through
    modifiers in the return type to obtain the location of the underlying auto
node
    in order to replace it with the adjusted auto node.  To that end this patch
    refactors the utility function find_type_usage to return a pointer to the
    matched tree, and uses it to find and replace the underlying auto node.

    The second issue (PR 80471) is that the AUTO_IS_DECLTYPE flag is not being
    preserved in splice_late_return_type when compensating for an abbreviated
    function template, leading to us treating a decltype(auto) return type as
if it
    was an auto return type.  Fixed by making make_auto_1 set the
AUTO_IS_DECLTYPE
    flag whenever we're building a decltype(auto) node and adjusting callers
    appropriately.  The test for PR 80471 is adjusted to expect the correct
    behavior.

    gcc/cp/ChangeLog:

        PR c++/69448
        PR c++/80471
        * type-utils.h (find_type_usage): Refactor to take a tree * and to
        return a tree *, and update documentation accordingly.
        * pt.c (make_auto_1): Set AUTO_IS_DECLTYPE when building a
        decltype(auto) node.
        (make_constrained_decltype_auto): No need to explicitly set
        AUTO_IS_DECLTYPE anymore.
        (splice_late_return_type): Use find_type_usage to find and
        replace a possibly nested auto node instead of using is_auto.
        Check test for is_auto into an assert when deciding whether
        to late_return_type.
        (type_uses_auto): Adjust the call to find_type_usage.
        * parser.c (cp_parser_decltype): No need to explicitly set
        AUTO_IS_DECLTYPE anymore.

    libcc1/ChangeLog:

        PR c++/69448
        PR c++/80471
        * libcp1plugin.cc (plugin_get_expr_type): No need to explicitly set
        AUTO_IS_DECLTYPE anymore.

    gcc/testsuite/ChangeLog:

        PR c++/69448
        PR c++/80471
        * g++.dg/concepts/abbrev3.C: New test.
        * g++.dg/cpp2a/concepts-pr80471.C: Adjust a static_assert to expect the
        correct behavior.
        * g++.dg/cpp0x/auto9.C: Adjust a dg-error directive.

Reply via email to