qemu-arm
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-arm] [kvm-unit-tests PATCH v2 01/10] lib: xstr: allow multiple


From: Alex Bennée
Subject: Re: [Qemu-arm] [kvm-unit-tests PATCH v2 01/10] lib: xstr: allow multiple args
Date: Mon, 06 Jun 2016 11:49:09 +0100
User-agent: mu4e 0.9.17; emacs 25.0.94.5

Andrew Jones <address@hidden> writes:

> Signed-off-by: Andrew Jones <address@hidden>
> ---
>  lib/libcflat.h | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lib/libcflat.h b/lib/libcflat.h
> index 582e3fc60e287..e5e588c742763 100644
> --- a/lib/libcflat.h
> +++ b/lib/libcflat.h
> @@ -27,8 +27,8 @@
>
>  #define __unused __attribute__((__unused__))
>
> -#define xstr(s) xxstr(s)
> -#define xxstr(s) #s
> +#define xstr(s...) xxstr(s)
> +#define xxstr(s...) #s

OK my knowledge of stringinfication is still rusty despite having read
the QEMU softmmu code. However:

                printf("Unknown subtest:" xstr(foo,ba) "\n");

Yields:

                Unknown subtestfoo,ba

Is that what you wanted? Or were you aiming for xstr(foo,ba) => fooba

As an aside I couldn't actually see xstr being called with multiple
arguments in the source tree.

>
>  #define __ALIGN_MASK(x, mask)        (((x) + (mask)) & ~(mask))
>  #define __ALIGN(x, a)                __ALIGN_MASK(x, (typeof(x))(a) - 1)


--
Alex Bennée



reply via email to

[Prev in Thread] Current Thread [Next in Thread]