diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2011-02-10 15:47:14 +0000 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2011-02-10 21:21:30 +0100 |
commit | f2f27b9f9bff33217ad1ee9f975f5e98980a8f1a (patch) | |
tree | 1813ed89aa14ef3f8c81de6d17107995a30ed122 /target-arm/neon_helper.c | |
parent | 005e1a0a02810ee132742d8a29771cd48a2b4285 (diff) |
target-arm: Remove stray #include from middle of neon_helper.c
Remove a stray #include <stdio.h> 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 <peter.maydell@linaro.org>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'target-arm/neon_helper.c')
-rw-r--r-- | 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 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 <stdio.h> uint64_t HELPER(neon_negl_u32)(uint64_t x) { uint32_t low = -x; |