projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4a7428c
)
target-microblaze: Remove unnecessary variable
author
Shraddha Barke
<shraddha.6596@gmail.com>
Fri, 25 Sep 2015 08:37:56 +0000
(14:07 +0530)
committer
Michael Tokarev
<mjt@tls.msk.ru>
Thu, 8 Oct 2015 16:46:01 +0000
(19:46 +0300)
Compress lines and remove the variable.
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
target-microblaze/op_helper.c
patch
|
blob
|
history
diff --git
a/target-microblaze/op_helper.c
b/target-microblaze/op_helper.c
index 092c4b594d720ae5340af8f3f5b015da3ca0d10f..d32434770cba0bcf3f66a2bdf3099f9486e16889 100644
(file)
--- 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)