From: Michael Elizabeth Chastain <mec@shout.net>
To: ezannoni@redhat.com, gdb-patches@sources.redhat.com,
jimb@redhat.com, mec@shout.net
Cc: ac131313@redhat.com
Subject: Re: [rfa] save space by using enum bitfields
Date: Tue, 19 Aug 2003 19:42:00 -0000 [thread overview]
Message-ID: <200308191942.h7JJgDZO023614@duracef.shout.net> (raw)
For people tracking patches:
This patch is withdrawn for rework. It was drawing a gcc
warning about an enum definition nested in a struct definition.
Seems like this is fine:
struct s { enum e { one, two, three } e1; };
But this is not:
struct s { enum e { one, two, three }; enum e e1; };
So I gotta refactor:
enum e { one, two, three };
struct s { enum e e1; };
Michael C
===
2003-08-17 Michael Chastain <mec@shout.net>
* defs.h (ENUM_BITFIELD): New macro.
* symtab.h (ENUM_BITFIELD): Use it.
(BYTE_BITFIELD): Remove old macro, which was already disabled.
next reply other threads:[~2003-08-19 19:42 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-08-19 19:42 Michael Elizabeth Chastain [this message]
-- strict thread matches above, loose matches on Subject: below --
2003-08-19 19:38 Michael Elizabeth Chastain
2003-08-19 21:57 ` Jim Blandy
2003-08-18 22:35 Michael Elizabeth Chastain
2003-08-19 19:25 ` Jim Blandy
2003-08-18 22:07 Michael Elizabeth Chastain
2003-08-18 23:02 ` Andrew Cagney
2003-08-18 7:00 Michael Elizabeth Chastain
2003-08-18 20:50 ` Michael Snyder
2003-08-18 20:56 ` Daniel Jacobowitz
2003-08-18 21:47 ` Jim Blandy
2003-08-18 21:50 ` David Carlton
2003-08-18 21:53 ` Daniel Jacobowitz
2003-08-18 21:06 ` David Carlton
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=200308191942.h7JJgDZO023614@duracef.shout.net \
--to=mec@shout.net \
--cc=ac131313@redhat.com \
--cc=ezannoni@redhat.com \
--cc=gdb-patches@sources.redhat.com \
--cc=jimb@redhat.com \
/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