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: Richard Henderson
Subject: Re: [Qemu-devel] [PATCH v3 01/29] tcg-aarch64: Set ext based on TCG_OPF_64BIT
Date: Thu, 12 Sep 2013 06:21:46 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130805 Thunderbird/17.0.8

On 09/12/2013 01:58 AM, Peter Maydell wrote:
> 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.

Those 28 may well be all mine too.  The fingers still remember
that one must use FALLTHRU for lint.   ;-)


r~




reply via email to

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