]> git.ipfire.org Git - thirdparty/gcc.git/commit
c++: reduce temporaries in ?:
authorJason Merrill <jason@redhat.com>
Mon, 19 Sep 2022 17:08:10 +0000 (19:08 +0200)
committerJason Merrill <jason@redhat.com>
Thu, 29 Sep 2022 17:48:20 +0000 (13:48 -0400)
commit32b2eb59fb904926eff77811e08766a8ae6804a7
treeb5d170cf847014cde68feb6c197515e3d9fdec99
parentaf9034827e8f06f10767064e9fc7443b94e08184
c++: reduce temporaries in ?:

When the sides of ?: are class prvalues, we wrap the COND_EXPR in a
TARGET_EXPR so that both sides will initialize the same temporary.  But in
this case we were stripping the outer TARGET_EXPR and conditionally creating
different temporaries, unnecessarily using extra stack.  The
recently added TARGET_EXPR_NO_ELIDE flag avoids this.

gcc/cp/ChangeLog:

* call.cc (build_conditional_expr): Set TARGET_EXPR_NO_ELIDE on the
outer TARGET_EXPR.

gcc/testsuite/ChangeLog:

* g++.dg/tree-ssa/cond-temp1.C: New test.
gcc/cp/call.cc
gcc/testsuite/g++.dg/tree-ssa/cond-temp1.C [new file with mode: 0644]