projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb7a3d7
)
target-arm: remove pointless else clause in VQSHL of u64
author
Juha Riihimäki
<juha.riihimaki@nokia.com>
Tue, 7 Dec 2010 14:13:44 +0000
(14:13 +0000)
committer
Aurelien Jarno
<aurelien@aurel32.net>
Mon, 27 Dec 2010 20:07:16 +0000
(21:07 +0100)
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>
target-arm/neon_helper.c
patch
|
blob
|
history
diff --git
a/target-arm/neon_helper.c
b/target-arm/neon_helper.c
index 2dc3d96dba9dc080033e7e2d37c69e7b138a28ea..48b9f5b5b5617655d49064ce7021db667f0d4d28 100644
(file)
--- 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;