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: 115 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.159.109) by localhost6.localdomain6 with IMAP4-SSL; 08 Jun 2011 14:40:06 -0000 Delivered-To: patches@linaro.org Received: by 10.147.124.5 with SMTP id b5cs186887yan; Thu, 10 Feb 2011 07:47:18 -0800 (PST) Received: by 10.227.157.19 with SMTP id z19mr10274939wbw.189.1297352837618; Thu, 10 Feb 2011 07:47:17 -0800 (PST) Received: from mnementh.archaic.org.uk (mnementh.archaic.org.uk [81.2.115.146]) by mx.google.com with ESMTPS id s18si335139wbh.67.2011.02.10.07.47.16 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 10 Feb 2011 07:47:17 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) client-ip=81.2.115.146; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) smtp.mail=pm215@archaic.org.uk 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 Cc: patches@linaro.org Subject: [PATCH] target-arm: Remove stray #include from middle of neon_helper.c 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 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;