qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH v3 01/29] tcg-aarch64: Set ext based on TCG_OPF_


From: Peter Maydell
Subject: Re: [Qemu-devel] [PATCH v3 01/29] tcg-aarch64: Set ext based on TCG_OPF_64BIT
Date: Thu, 12 Sep 2013 09:58:41 +0100

On 12 September 2013 09:25, Claudio Fontana <address@hidden> wrote:
> On 02.09.2013 19:54, Richard Henderson wrote:
>>
>> -    case INDEX_op_bswap64_i64:
>> -        ext = 1; /* fall through */
>>      case INDEX_op_bswap32_i64:
>> +        /* Despite the _i64, this is a 32-bit bswap.  */
>> +        ext = 0;
>> +        /* FALLTHRU */
>> +    case INDEX_op_bswap64_i64:
>
> we waste too much y space here, which gives context and is a scarse resource.
> What about
>
> case INDEX_op_bswap32_i64: /* Despite the _i64, this is a 32-bit bswap.  */
>     ext = false; /* FALLTHRU */

Consensus in the rest of the code is for /* fall through */
rather than /* FALLTHRU */ -- there's only 28 of the
latter compared to 169 of the former.

-- PMM



reply via email to

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