From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58035) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Voi72-0007qS-2N for qemu-devel@nongnu.org; Thu, 05 Dec 2013 18:13:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Voi6r-0007qp-6t for qemu-devel@nongnu.org; Thu, 05 Dec 2013 18:13:39 -0500 Received: from mail-yh0-x233.google.com ([2607:f8b0:4002:c01::233]:49630) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Voi6r-0007qe-29 for qemu-devel@nongnu.org; Thu, 05 Dec 2013 18:13:29 -0500 Received: by mail-yh0-f51.google.com with SMTP id c41so11678014yho.10 for ; Thu, 05 Dec 2013 15:13:28 -0800 (PST) Sender: Richard Henderson Message-ID: <52A1088E.2020603@twiddle.net> Date: Fri, 06 Dec 2013 12:13:18 +1300 From: Richard Henderson MIME-Version: 1.0 References: <1386280289-27636-1-git-send-email-peter.maydell@linaro.org> <1386280289-27636-6-git-send-email-peter.maydell@linaro.org> <52A1036B.9030002@twiddle.net> In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 05/13] target-arm: A64: add support for 2-src data processing and DIV List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: Patch Tracking , Michael Matz , QEMU Developers , Claudio Fontana , Dirk Mueller , Will Newton , Laurent Desnogues , =?UTF-8?B?QWxleCBCZW5uw6ll?= , "kvmarm@lists.cs.columbia.edu" , Christoffer Dall On 12/06/2013 12:09 PM, Peter Maydell wrote: > On 5 December 2013 22:51, Richard Henderson wrote: >> On 12/06/2013 10:51 AM, Peter Maydell wrote: >>> + switch (opcode) { >>> + case 2: /* UDIV */ >>> + handle_div(s, FALSE, sf, rm, rn, rd); >>> + break; >>> + case 3: /* SDIV */ >>> + handle_div(s, TRUE, sf, rm, rn, rd); >>> + break; >> >> What are these all-caps TRUE/FALSE? stdbool.h uses lower-case. > > Good question, I wonder what system header is managing to define > those for us? (there are some other bits of the source tree which > use them too I see). > >> Otherwise, >> >> Reviewed-by: Richard Henderson > > By the way, for these "otherwise reviewed-by" patches, would > you prefer me to make the obvious trivial fix and include your > R-b tag on the fixed version in the next respin, or to make the > fix and leave the tag off so you can recheck it? The former -- make the trivial fix and include the R-b. r~