qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v2 07/18] tcg/arm: sxtb and sxth are available start


From: Aurelien Jarno
Subject: [Qemu-devel] [PATCH v2 07/18] tcg/arm: sxtb and sxth are available starting with ARMv6
Date: Sat, 10 Apr 2010 03:32:55 +0200

Signed-off-by: Aurelien Jarno <address@hidden>
---
 tcg/arm/tcg-target.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tcg/arm/tcg-target.c b/tcg/arm/tcg-target.c
index 2d834d6..8c55325 100644
--- a/tcg/arm/tcg-target.c
+++ b/tcg/arm/tcg-target.c
@@ -1478,7 +1478,7 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode 
opc,
         break;
 
     case INDEX_op_ext8s_i32:
-        if (use_armv7_instructions) {
+        if (use_armv6_instructions) {
             /* sxtb */
             tcg_out32(s, 0xe6af0070 | (args[0] << 12) | args[1]);
         } else {
@@ -1489,7 +1489,7 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode 
opc,
         }
         break;
     case INDEX_op_ext16s_i32:
-        if (use_armv7_instructions) {
+        if (use_armv6_instructions) {
             /* sxth */
             tcg_out32(s, 0xe6bf0070 | (args[0] << 12) | args[1]);
         } else {
-- 
1.7.0.4





reply via email to

[Prev in Thread] Current Thread [Next in Thread]