Re: [Qemu-devel] [PATCH 3/8] tcg: Add forward declarations for local functions

2011-09-17 Thread Peter Maydell
On 17 September 2011 21:00, Stefan Weil wrote: > +/* Forward declarations for functions declared and used in tcg-target.c. */ > +static int target_parse_constraint(TCGArgConstraint *ct, const char > **pct_str); > +static void tcg_out_ld(TCGContext *s, TCGType type, int ret, int arg1, > +        

[Qemu-devel] [PATCH 3/8] tcg: Add forward declarations for local functions

2011-09-17 Thread Stefan Weil
These functions are defined in the tcg target specific file tcg-target.c. The forward declarations assert that every tcg target uses the same function prototype. Signed-off-by: Stefan Weil --- tcg/tcg.c | 16 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/tcg