diff options
Diffstat (limited to 'target-microblaze/op_helper.c')
-rw-r--r-- | target-microblaze/op_helper.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/target-microblaze/op_helper.c b/target-microblaze/op_helper.c index 092c4b594d..d32434770c 100644 --- a/target-microblaze/op_helper.c +++ b/target-microblaze/op_helper.c @@ -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) |