public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/60809] New: C99 struct initialiser with embedded self assignment
@ 2014-04-10 12:37 jimis at gmx dot net
  2014-04-10 14:10 ` [Bug c/60809] " jimis at gmx dot net
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: jimis at gmx dot net @ 2014-04-10 12:37 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60809

            Bug ID: 60809
           Summary: C99 struct initialiser with embedded self assignment
           Product: gcc
           Version: 4.8.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jimis at gmx dot net

For the following code, which was a typo from my side (full example attached):

<pre>
        struct addrinfo query2 = {
                .ai_family = AF_UNSPEC,
                .ai_socktype = SOCK_STREAM,
                query2.ai_flags = AI_PASSIVE
        };
</pre>

1. A warning would be nice, something like "suggest parentheses around
assignment"
2. What is the C99 mandated behaviour? I'm not sure GCC is behaving properly.
Currently it sets ai_protocol to 1 because it is the next field after
ai_socktype. But it also sets ai_flags to 1, which I'd expect to be 0 after the
outer struct initialiser is executed.


See discussion, full example program and output, at
http://gcc.gnu.org/ml/gcc-help/2014-04/msg00033.html


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

end of thread, other threads:[~2014-04-30  5:20 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-10 12:37 [Bug c/60809] New: C99 struct initialiser with embedded self assignment jimis at gmx dot net
2014-04-10 14:10 ` [Bug c/60809] " jimis at gmx dot net
2014-04-10 14:24 ` schwab@linux-m68k.org
2014-04-10 16:33 ` jimis at gmx dot net
2014-04-10 18:37 ` jimis at gmx dot net
2014-04-29 21:43 ` joseph at codesourcery dot com
2014-04-30  5:20 ` mpolacek at gcc dot gnu.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).