diff options
author | Juha Riihimäki <juha.riihimaki@nokia.com> | 2010-12-07 14:13:44 +0000 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-12-27 21:07:16 +0100 |
commit | 620d791e341fe0b36e6c2a5659b2cc9f7866948f (patch) | |
tree | beefed17a9d80445fe31a05b1c430c0e4988a013 /target-arm | |
parent | eb7a3d7964f748ba815200372d7ff403737c54d7 (diff) |
target-arm: remove pointless else clause in VQSHL of u64
Remove a pointless else clause in the neon_qshl_u64 helper.
Signed-off-by: Juha Riihimäki <juha.riihimaki@nokia.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'target-arm')
-rw-r--r-- | target-arm/neon_helper.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target-arm/neon_helper.c b/target-arm/neon_helper.c index 2dc3d96dba..48b9f5b5b5 100644 --- a/target-arm/neon_helper.c +++ b/target-arm/neon_helper.c @@ -560,8 +560,6 @@ uint64_t HELPER(neon_qshl_u64)(CPUState *env, uint64_t val, uint64_t shiftop) if (val) { val = ~(uint64_t)0; SET_QC(); - } else { - val = 0; } } else if (shift <= -64) { val = 0; |