From patchwork Thu Feb 10 15:47:14 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 82661 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id BFE63B7128 for ; Fri, 11 Feb 2011 07:10:22 +1100 (EST) Received: from localhost ([127.0.0.1]:45602 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PncqI-0001EC-TG for incoming@patchwork.ozlabs.org; Thu, 10 Feb 2011 15:10:19 -0500 Received: from [140.186.70.92] (port=48543 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PnYju-0007Iz-3k for qemu-devel@nongnu.org; Thu, 10 Feb 2011 10:47:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PnYjm-0007LL-7V for qemu-devel@nongnu.org; Thu, 10 Feb 2011 10:47:19 -0500 Received: from mnementh.archaic.org.uk ([81.2.115.146]:57559) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PnYjl-0007L3-UR for qemu-devel@nongnu.org; Thu, 10 Feb 2011 10:47:18 -0500 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.69) (envelope-from ) id 1PnYji-000370-U8; Thu, 10 Feb 2011 15:47:14 +0000 From: Peter Maydell To: qemu-devel@nongnu.org Date: Thu, 10 Feb 2011 15:47:14 +0000 Message-Id: <1297352834-11941-1-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.1 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 81.2.115.146 Cc: patches@linaro.org Subject: [Qemu-devel] [PATCH] target-arm: Remove stray #include from middle of neon_helper.c X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Remove a stray #include from the middle of neon_helper.c: it was harmless but pointless since we include stdio.h at the top of the file anyway. Signed-off-by: Peter Maydell --- target-arm/neon_helper.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/target-arm/neon_helper.c b/target-arm/neon_helper.c index 61890dd..dc09968 100644 --- a/target-arm/neon_helper.c +++ b/target-arm/neon_helper.c @@ -1484,7 +1484,6 @@ uint64_t HELPER(neon_negl_u16)(uint64_t x) return result; } -#include uint64_t HELPER(neon_negl_u32)(uint64_t x) { uint32_t low = -x;