From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38840) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VK2mW-0005Iq-SO for qemu-devel@nongnu.org; Thu, 12 Sep 2013 05:01:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VK2mS-0007xW-3E for qemu-devel@nongnu.org; Thu, 12 Sep 2013 05:01:44 -0400 Received: from lhrrgout.huawei.com ([194.213.3.17]:27136) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VK2mR-0007xS-RP for qemu-devel@nongnu.org; Thu, 12 Sep 2013 05:01:40 -0400 Message-ID: <523182DA.5020704@huawei.com> Date: Thu, 12 Sep 2013 11:01:14 +0200 From: Claudio Fontana MIME-Version: 1.0 References: <1378144503-15808-1-git-send-email-rth@twiddle.net> <1378144503-15808-2-git-send-email-rth@twiddle.net> <52317A6C.20400@huawei.com> In-Reply-To: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3 01/29] tcg-aarch64: Set ext based on TCG_OPF_64BIT List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: QEMU Developers , Richard Henderson On 12.09.2013 10:58, Peter Maydell wrote: > On 12 September 2013 09:25, Claudio Fontana 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. > I like /* fall through */ better as well.