From f2f27b9f9bff33217ad1ee9f975f5e98980a8f1a Mon Sep 17 00:00:00 2001 From: Peter Maydell Date: Thu, 10 Feb 2011 15:47:14 +0000 Subject: [PATCH] target-arm: Remove stray #include from middle of neon_helper.c 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 Signed-off-by: Aurelien Jarno --- target-arm/neon_helper.c | 1 - 1 file changed, 1 deletion(-) diff --git a/target-arm/neon_helper.c b/target-arm/neon_helper.c index 61890dd69a..dc09968c86 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;