summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-10-23 23:22:03 +0000
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-10-23 23:22:03 +0000
commit9278480e8f9155fc3b3ce459efd12b500a611b7f (patch)
tree3e0b014f2933657f90e247f639269e5941621ae1
parent7385ac0ba2456159a52b9b2cbb5f6c71921d0c23 (diff)
downloadfocaccia-qemu-9278480e8f9155fc3b3ce459efd12b500a611b7f.tar.gz
focaccia-qemu-9278480e8f9155fc3b3ce459efd12b500a611b7f.zip
Fix CLO calculation for MIPS64. And a small code cleanup.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3428 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r--target-mips/op.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/target-mips/op.c b/target-mips/op.c
index 3aefec2491..ca367d763f 100644
--- a/target-mips/op.c
+++ b/target-mips/op.c
@@ -543,9 +543,9 @@ void op_clo (void)
         T0 = 32;
     } else {
         for (n = 0; n < 32; n++) {
-            if (!(T0 & (1 << 31)))
+            if (!(((int32_t)T0) & (1 << 31)))
                 break;
-            T0 = T0 << 1;
+            T0 <<= 1;
         }
         T0 = n;
     }
@@ -562,7 +562,7 @@ void op_clz (void)
         for (n = 0; n < 32; n++) {
             if (T0 & (1 << 31))
                 break;
-            T0 = T0 << 1;
+            T0 <<= 1;
         }
         T0 = n;
     }
@@ -747,7 +747,7 @@ void op_dclo (void)
         for (n = 0; n < 64; n++) {
             if (!(T0 & (1ULL << 63)))
                 break;
-            T0 = T0 << 1;
+            T0 <<= 1;
         }
         T0 = n;
     }
@@ -764,7 +764,7 @@ void op_dclz (void)
         for (n = 0; n < 64; n++) {
             if (T0 & (1ULL << 63))
                 break;
-            T0 = T0 << 1;
+            T0 <<= 1;
         }
         T0 = n;
     }