]> git.proxmox.com Git - qemu.git/commitdiff
Fix rotri_i64 typo.
authorpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>
Mon, 3 Nov 2008 13:30:50 +0000 (13:30 +0000)
committerpbrook <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

index 58af59cc253f708eb51df6dad2018379f352c55f..ba774edd214b7ff1f52d9e6ce1bee6f0eae2795d 100644 (file)
@@ -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_i32(ret, arg1);
+        tcg_gen_mov_i64(ret, arg1);
     } else {
         tcg_gen_rotli_i64(ret, arg1, 64 - arg2);
     }