mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-27 13:30:52 +00:00
target-microblaze: Remove unnecessary variable
Compress lines and remove the variable. Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
4a7428c5a7
commit
738c8b01ba
@ -150,9 +150,7 @@ uint32_t helper_clz(uint32_t t0)
|
||||
|
||||
uint32_t helper_carry(uint32_t a, uint32_t b, uint32_t cf)
|
||||
{
|
||||
uint32_t ncf;
|
||||
ncf = compute_carry(a, b, cf);
|
||||
return ncf;
|
||||
return compute_carry(a, b, cf);
|
||||
}
|
||||
|
||||
static inline int div_prepare(CPUMBState *env, uint32_t a, uint32_t b)
|
||||
|
Loading…
Reference in New Issue
Block a user