All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/7]  Remove pre ANSI c89 code
@ 2009-09-22 23:18 Juan Quintela
  2009-09-22 23:18 ` [Qemu-devel] [PATCH 1/7] Use proper typedef syntax Juan Quintela
                   ` (7 more replies)
  0 siblings, 8 replies; 14+ messages in thread
From: Juan Quintela @ 2009-09-22 23:18 UTC (permalink / raw)
  To: qemu-devel

Hi

In commemoration of the 20th anniversary of the c89 standard, this brings
qemu codebase to c89.  How do I know?

Previous to last patch adds to QEMU_CFLAGS:
  -Wold-style-declaration -Wold-style-definition

Why?
- typedef abuse for the 1st patch.  How that ever worked, I don't know.
- gcc gets picky, and you have to declare functions as:
   static inline void f(...)
   inline static void f(...)
  but
   static void inline f(...)
  gets warnings.  Just move the few functions that have the third
  format to the 1st one.
- bring alpha-dis.c and sh4-dis.c to ansi c89 function declaration.
- static + const: gcc wants you to use:
      static const
  and gives a warning for
      const static
- same for static + __thread (only 1 occurrence)
- last patch removes PARAMS() from dis-asm.h
  last users were alpha-dis.c and sh4-dis.c (do you start to see a
  pattern here).

Last one is not required, but as qemu is not going to compile in pre-c89
compiler any time soon, it is better to also apply it.

Later, Juan.


Juan Quintela (7):
  Use proper typedef syntax
  static and inline should came before the type of the functions
  Bring two last users of K&R definitions to ANSI c89
  gcc wants 1st static and then const
  __thread should be before real type
  Add -Wold-style-declaration -Wold-style-definition to QEMU_CFLAGS
  Remove PARAMS() macro

 alpha-dis.c                       |  116 ++++++++++++-------------------------
 configure                         |    1 +
 dis-asm.h                         |  102 ++++++++++++++++-----------------
 gen-icount.h                      |    2 +-
 hw/g364fb.c                       |    4 +-
 hw/pflash_cfi01.c                 |    2 +-
 hw/serial.c                       |    4 +-
 hw/sh7750.c                       |    2 +-
 hw/usb-bt.c                       |    2 +-
 hw/xen_blkif.h                    |    4 +-
 linux-user/arm/nwfpe/fpa11_cprt.c |    2 +-
 linux-user/mmap.c                 |    2 +-
 sh4-dis.c                         |   32 +++-------
 target-i386/kvm.c                 |    2 +-
 target-microblaze/translate.c     |    4 +-
 target-ppc/translate.c            |    8 +-
 16 files changed, 116 insertions(+), 173 deletions(-)

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

end of thread, other threads:[~2009-09-29 23:16 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-22 23:18 [Qemu-devel] [PATCH 0/7] Remove pre ANSI c89 code Juan Quintela
2009-09-22 23:18 ` [Qemu-devel] [PATCH 1/7] Use proper typedef syntax Juan Quintela
2009-09-23  0:24   ` [Qemu-devel] " Måns Rullgård
2009-09-22 23:19 ` [Qemu-devel] [PATCH 2/7] static and inline should came before the type of the functions Juan Quintela
2009-09-22 23:19 ` [Qemu-devel] [PATCH 3/7] Bring two last users of K&R definitions to ANSI c89 Juan Quintela
2009-09-22 23:19 ` [Qemu-devel] [PATCH 4/7] gcc wants 1st static and then const Juan Quintela
2009-09-22 23:19 ` [Qemu-devel] [PATCH 5/7] __thread should be before real type Juan Quintela
2009-09-22 23:19 ` [Qemu-devel] [PATCH 6/7] Add -Wold-style-declaration -Wold-style-definition to QEMU_CFLAGS Juan Quintela
2009-09-23  8:48   ` Laurent Desnogues
2009-09-23 16:09     ` Markus Armbruster
2009-09-23 17:16       ` Blue Swirl
2009-09-29 23:15         ` [Qemu-devel] " Juan Quintela
2009-09-22 23:19 ` [Qemu-devel] [PATCH 7/7] Remove PARAMS() macro Juan Quintela
2009-09-23 16:11 ` [Qemu-devel] [PATCH 0/7] Remove pre ANSI c89 code Markus Armbruster

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.