]> git.proxmox.com Git - mirror_qemu.git/commitdiff
target-s390x: fix CONVERT TO BINARY (CVD, CVDY)
authorAurelien Jarno <aurelien@aurel32.net>
Thu, 25 Jun 2015 19:16:58 +0000 (21:16 +0200)
committerAlexander Graf <agraf@suse.de>
Tue, 7 Jul 2015 15:51:47 +0000 (17:51 +0200)
current_number being shift left by more than 32 bits, we can't use a
simple int. Similarly use an int64_t type for the input binary value,
to not get the -2^31 case wrong. Finally don't initialize shift to 4,
it's already done in the for loop.

Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Alexander Graf <agraf@suse.de>
target-s390x/int_helper.c

index 2c2b3f622c5e91e8f4546f4e3a6e16adf856317e..a46c736d67bc66388225c60a3059850955d014a7 100644 (file)
@@ -121,11 +121,12 @@ uint64_t HELPER(clz)(uint64_t v)
     return clz64(v);
 }
 
-uint64_t HELPER(cvd)(int32_t bin)
+uint64_t HELPER(cvd)(int32_t reg)
 {
     /* positive 0 */
     uint64_t dec = 0x0c;
-    int shift = 4;
+    int64_t bin = reg;
+    int shift;
 
     if (bin < 0) {
         bin = -bin;
@@ -133,9 +134,7 @@ uint64_t HELPER(cvd)(int32_t bin)
     }
 
     for (shift = 4; (shift < 64) && bin; shift += 4) {
-        int current_number = bin % 10;
-
-        dec |= (current_number) << shift;
+        dec |= (bin % 10) << shift;
         bin /= 10;
     }