projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
54843a5
)
Fix rotri_i64 typo.
author
pbrook
<pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>
Mon, 3 Nov 2008 13:30:50 +0000
(13:30 +0000)
committer
pbrook
<pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>
Mon, 3 Nov 2008 13:30:50 +0000
(13:30 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5609
c046a42c
-6fe2-441c-8c8c-
71466251a162
tcg/tcg-op.h
patch
|
blob
|
history
diff --git
a/tcg/tcg-op.h
b/tcg/tcg-op.h
index 58af59cc253f708eb51df6dad2018379f352c55f..ba774edd214b7ff1f52d9e6ce1bee6f0eae2795d 100644
(file)
--- a/
tcg/tcg-op.h
+++ b/
tcg/tcg-op.h
@@
-1622,7
+1622,7
@@
static inline void tcg_gen_rotri_i64(TCGv ret, TCGv arg1, int64_t arg2)
{
/* some cases can be optimized here */
if (arg2 == 0) {
- tcg_gen_mov_i
32
(ret, arg1);
+ tcg_gen_mov_i
64
(ret, arg1);
} else {
tcg_gen_rotli_i64(ret, arg1, 64 - arg2);
}