mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-23 16:08:41 -07:00
target/arm: add spaces around operator
Fix code style. Operator needs spaces both sides. Signed-off-by: Xinhao Zhang <zhangxinhao1@huawei.com> Signed-off-by: Kai Deng <dengkai1@huawei.com> Message-id: 20201103114529.638233-1-zhangxinhao1@huawei.com Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
9df0a97298
commit
bdc3b6f570
3 changed files with 9 additions and 9 deletions
|
|
@ -12508,7 +12508,7 @@ uint32_t HELPER(usad8)(uint32_t a, uint32_t b)
|
|||
uint32_t sum;
|
||||
sum = do_usad(a, b);
|
||||
sum += do_usad(a >> 8, b >> 8);
|
||||
sum += do_usad(a >> 16, b >>16);
|
||||
sum += do_usad(a >> 16, b >> 16);
|
||||
sum += do_usad(a >> 24, b >> 24);
|
||||
return sum;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue