public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug d/101273] New: d: missed RVO optimization with non-pod structs
@ 2021-06-30 15:03 ibuclaw at gdcproject dot org
  2021-07-01 10:29 ` [Bug d/101273] " ibuclaw at gdcproject dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: ibuclaw at gdcproject dot org @ 2021-06-30 15:03 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 101273
           Summary: d: missed RVO optimization with non-pod structs
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: d
          Assignee: ibuclaw at gdcproject dot org
          Reporter: ibuclaw at gdcproject dot org
  Target Milestone: ---

It looks like fixing PR d/100882 introduced a small regression:
---
struct S
{
    int x;
    S *impl;
    this(int x)
    {
        this.x = x;
        this.impl = &this;
    }
    ~this() { }
}

S makeS()
{
    return S(42);
}

S nrvo()
{
    S ret = S(2);
    return ret; 
}

S rvo()
{
    return makeS(); 
}

void main()
{
    auto a1 = nrvo();
    assert(&a1 is a1.impl);
    auto b1 = rvo();
    assert(&b1 is b1.impl);
    return;
}

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-07-03 17:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-30 15:03 [Bug d/101273] New: d: missed RVO optimization with non-pod structs ibuclaw at gdcproject dot org
2021-07-01 10:29 ` [Bug d/101273] " ibuclaw at gdcproject dot org
2021-07-03 11:08 ` cvs-commit at gcc dot gnu.org
2021-07-03 11:09 ` cvs-commit at gcc dot gnu.org
2021-07-03 17:06 ` ibuclaw at gdcproject dot org

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).