public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Jason Merrill <jason@redhat.com>
To: Jakub Jelinek <jakub@redhat.com>, Nathan Sidwell <nathan@acm.org>
Cc: gcc-patches@gcc.gnu.org
Subject: Re: [C++ PATCH] Fix xvalue COND_EXPR handling (PR c++/88103)
Date: Sun, 02 Dec 2018 00:11:00 -0000	[thread overview]
Message-ID: <5c68bcdb-0cbc-6044-f6c4-fe241a307cf5@redhat.com> (raw)
In-Reply-To: <20181129215227.GV12380@tucnak>

On 11/29/18 4:52 PM, Jakub Jelinek wrote:
> Hi!
> 
> On the following testcase, build_conditional_expr_1 tries hard to make sure
> that if both arguments are xvalue_p (or one is and the other throw) the
> result is still xvalue_p.  But, later on we call unary_complex_lvalue,
> which does rationalize_conditional_expr which changes it from
> cond ? x : y to *(cond ? &x : &y) and that change turns something formerly
> xvalue_p into newly lvalue_p.
> 
> Fixed thusly, bootstrapped/regtested on x86_64-linux and i686-linux,
> ok for trunk?
> 
> 2018-11-29  Jakub Jelinek  <jakub@redhat.com>
> 
> 	PR c++/88103
> 	* typeck.c (unary_complex_lvalue): If a COND_EXPR is xvalue_p, make
> 	sure the result is as well.
> 
> 	* g++.dg/cpp0x/rv-cond3.C: New test.
> 
> --- gcc/cp/typeck.c.jj	2018-11-27 09:48:58.506103668 +0100
> +++ gcc/cp/typeck.c	2018-11-29 21:00:33.900636750 +0100
> @@ -6503,7 +6503,16 @@ unary_complex_lvalue (enum tree_code cod
>     /* Handle (a ? b : c) used as an "lvalue".  */
>     if (TREE_CODE (arg) == COND_EXPR
>         || TREE_CODE (arg) == MIN_EXPR || TREE_CODE (arg) == MAX_EXPR)
> -    return rationalize_conditional_expr (code, arg, tf_warning_or_error);
> +    {
> +      tree ret = rationalize_conditional_expr (code, arg, tf_warning_or_error);
> +      /* Preserve xvalue kind.  */
> +      if (xvalue_p (arg))
> +	{
> +	  tree reftype = cp_build_reference_type (TREE_TYPE (arg), true);
> +	  ret = cp_convert (reftype, ret, tf_warning_or_error);

Is there a reason not to use the 'move' function here?

Jason

  reply	other threads:[~2018-12-02  0:11 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-29 21:52 Jakub Jelinek
2018-12-02  0:11 ` Jason Merrill [this message]
2018-12-02 13:07   ` Jakub Jelinek
2018-12-03 19:44     ` Jason Merrill
2018-12-03 21:36       ` Jakub Jelinek
2018-12-03 21:58         ` Jason Merrill

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5c68bcdb-0cbc-6044-f6c4-fe241a307cf5@redhat.com \
    --to=jason@redhat.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=jakub@redhat.com \
    --cc=nathan@acm.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).