public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "mcolavita at fb dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/98335] [9/10/11 Regression] Poor code generation for partial struct initialization
Date: Thu, 17 Dec 2020 16:19:41 +0000	[thread overview]
Message-ID: <bug-98335-4-xUP9RffLzt@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-98335-4@http.gcc.gnu.org/bugzilla/>

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

--- Comment #1 from Michael Colavita <mcolavita at fb dot com> ---
A similar problem appears to occur for the following example:

  struct Data {
    long a;
    union {
      long u;
      struct {
        char b;
        char pad[3];
      };
    };
  };

  Data val(long d, long e) {
    return { d, e };
  }

Yielding:

    movq            %rdi, %xmm0
    movq            %rsi, %xmm1
    punpcklqdq      %xmm1, %xmm0
    movaps          %xmm0, -56(%rsp)
    movq            -56(%rsp), %rax
    movq            -48(%rsp), %rdx
    ret

  reply	other threads:[~2020-12-17 16:19 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-16 22:02 [Bug rtl-optimization/98335] New: " mcolavita at fb dot com
2020-12-17 16:19 ` mcolavita at fb dot com [this message]
2021-01-04 15:40 ` [Bug tree-optimization/98335] " rguenth at gcc dot gnu.org
2021-01-06 11:01 ` ebotcazou at gcc dot gnu.org
2021-01-20  9:51 ` jakub at gcc dot gnu.org
2021-01-21 11:27 ` jakub at gcc dot gnu.org
2021-06-01  8:19 ` [Bug tree-optimization/98335] [9/10/11/12 " rguenth at gcc dot gnu.org
2022-03-07 13:01 ` roger at nextmovesoftware dot com
2022-03-11 17:53 ` cvs-commit at gcc dot gnu.org
2022-03-11 17:59 ` cvs-commit at gcc dot gnu.org
2022-03-14 18:44 ` roger at nextmovesoftware dot com

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=bug-98335-4-xUP9RffLzt@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.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).