mirror of https://gitee.com/openkylin/qemu.git
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>
This commit is contained in:
parent
eb7a3d7964
commit
620d791e34
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue