From: Luiz Capitulino <lcapitulino@redhat.com>
To: malc <av1474@comtv.ru>
Cc: aliguori@us.ibm.com, qemu-devel@nongnu.org, mdroth@linux.vnet.ibm.com
Subject: Re: [Qemu-devel] [PATCH 1/2] Introduce compiler.h header file
Date: Wed, 13 Jul 2011 13:20:33 -0300 [thread overview]
Message-ID: <20110713132033.3480f29b@doriath> (raw)
In-Reply-To: <alpine.LNX.2.00.1107131836510.4791@linmac>
On Wed, 13 Jul 2011 18:37:31 +0400 (MSD)
malc <av1474@comtv.ru> wrote:
> On Wed, 13 Jul 2011, Luiz Capitulino wrote:
>
> > From: Luiz Capitulino <lcapitulino@gmail.com>
> >
> > This moves compiler related macros from qemu-common.h to compiler.h.
> >
> > The reason for this change is that there are simple header files that
> > depend only on the compiler macros, so including qemu-common.h is overkill.
> >
> > Besides, qemu-common.h is bloated and will benefit from some splitting.
> >
> > Signed-off-by: Luiz Capitulino <lcapitulino@gmail.com>
> > ---
> > compiler.h | 31 +++++++++++++++++++++++++++++++
> > qemu-common.h | 25 +------------------------
> > 2 files changed, 32 insertions(+), 24 deletions(-)
> > create mode 100644 compiler.h
> >
> > diff --git a/compiler.h b/compiler.h
> > new file mode 100644
> > index 0000000..2dfc2c6
> > --- /dev/null
> > +++ b/compiler.h
> > @@ -0,0 +1,31 @@
> > +#ifndef COMPILER_H
> > +#define COMPILER_H
> > +
> > +#include "config-host.h"
> > +
> > +#define QEMU_NORETURN __attribute__ ((__noreturn__))
> > +#ifdef CONFIG_GCC_ATTRIBUTE_WARN_UNUSED_RESULT
> > +#define QEMU_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
> > +#else
> > +#define QEMU_WARN_UNUSED_RESULT
> > +#endif
> > +
> > +#define QEMU_BUILD_BUG_ON(x) typedef char __build_bug_on__##__LINE__[(x)?-1:1];
>
> Identifiers starting with double underscore are reserved for all uses,
> so, please, use something else.
I'll fix it as an additional patch:
diff --git a/compiler.h b/compiler.h
index 2dfc2c6..54720bf 100644
--- a/compiler.h
+++ b/compiler.h
@@ -10,7 +10,8 @@
#define QEMU_WARN_UNUSED_RESULT
#endif
-#define QEMU_BUILD_BUG_ON(x) typedef char __build_bug_on__##__LINE__[(x)?-1:1];
+#define QEMU_BUILD_BUG_ON(x) \
+ typedef char qemu_build_bug_on__##__LINE__[(x)?-1:1];
#if defined __GNUC__
# if (__GNUC__ < 4) || \
next prev parent reply other threads:[~2011-07-13 16:20 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-07-13 14:23 [Qemu-devel] [PATCH v2 0/3]: Fix build issue with error.h Luiz Capitulino
2011-07-13 14:23 ` [Qemu-devel] [PATCH 1/2] Introduce compiler.h header file Luiz Capitulino
2011-07-13 14:37 ` malc
2011-07-13 16:20 ` Luiz Capitulino [this message]
2011-07-13 16:47 ` malc
2011-07-13 15:04 ` Peter Maydell
2011-07-13 16:27 ` Luiz Capitulino
2011-07-13 20:39 ` Stefan Weil
2011-07-14 12:57 ` Luiz Capitulino
2011-07-14 14:15 ` malc
2011-07-14 14:26 ` Luiz Capitulino
2011-07-14 14:35 ` malc
2011-07-14 10:58 ` Peter Maydell
2011-07-13 14:23 ` [Qemu-devel] [PATCH 2/2] Error: Fix build when qemu-common.h is not included Luiz Capitulino
-- strict thread matches above, loose matches on Subject: below --
2011-07-14 21:28 [Qemu-devel] [PATCH v4 0/3]: Fix build issue with error.h saga Luiz Capitulino
2011-07-14 21:28 ` [Qemu-devel] [PATCH 1/2] Introduce compiler.h header file Luiz Capitulino
2011-07-12 19:00 [Qemu-devel] [PATCH v2 0/2]: Fix build issue with error.h Luiz Capitulino
2011-07-12 19:00 ` [Qemu-devel] [PATCH 1/2] Introduce compiler.h header file Luiz Capitulino
2011-07-12 20:31 ` malc
2011-07-12 20:34 ` Luiz Capitulino
2011-07-12 20:43 ` malc
2011-07-12 20:52 ` Luiz Capitulino
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=20110713132033.3480f29b@doriath \
--to=lcapitulino@redhat.com \
--cc=aliguori@us.ibm.com \
--cc=av1474@comtv.ru \
--cc=mdroth@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.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 NNTP newsgroup(s).