From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36344) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WN8E8-0005DJ-Up for qemu-devel@nongnu.org; Mon, 10 Mar 2014 17:59:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WN8E4-0006PW-5x for qemu-devel@nongnu.org; Mon, 10 Mar 2014 17:59:16 -0400 Date: Mon, 10 Mar 2014 23:59:10 +0200 From: "Michael S. Tsirkin" Message-ID: <20140310215910.GE7104@redhat.com> References: <1394478649-9453-1-git-send-email-peter.maydell@linaro.org> <1394478649-9453-13-git-send-email-peter.maydell@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1394478649-9453-13-git-send-email-peter.maydell@linaro.org> Subject: Re: [Qemu-devel] [PATCH 12/12] hw/pci-host/apb.c: Avoid shifting left into sign bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: qemu-trivial@nongnu.org, qemu-ppc@nongnu.org, qemu-devel@nongnu.org, patches@linaro.org On Mon, Mar 10, 2014 at 07:10:48PM +0000, Peter Maydell wrote: > Add U suffix to avoid undefined behaviour. > > Signed-off-by: Peter Maydell While not required for correctness, it would be cleaner to change all constants around this line to 1U <<, for consistency. > --- > hw/pci-host/apb.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/pci-host/apb.c b/hw/pci-host/apb.c > index 1b399dd..a6869b8 100644 > --- a/hw/pci-host/apb.c > +++ b/hw/pci-host/apb.c > @@ -58,7 +58,7 @@ do { printf("APB: " fmt , ## __VA_ARGS__); } while (0) > #define PBM_PCI_IMR_MASK 0x7fffffff > #define PBM_PCI_IMR_ENABLED 0x80000000 > > -#define POR (1 << 31) > +#define POR (1U << 31) > #define SOFT_POR (1 << 30) > #define SOFT_XIR (1 << 29) > #define BTN_POR (1 << 28) > -- > 1.9.0 >