From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NzZQF-0006AD-5V for qemu-devel@nongnu.org; Wed, 07 Apr 2010 13:52:15 -0400 Received: from [140.186.70.92] (port=55336 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NzZPr-00060E-VP for qemu-devel@nongnu.org; Wed, 07 Apr 2010 13:52:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NzZPi-0007Ja-NL for qemu-devel@nongnu.org; Wed, 07 Apr 2010 13:51:51 -0400 Received: from hall.aurel32.net ([88.191.82.174]:45317) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NzZPi-0007Ip-1W for qemu-devel@nongnu.org; Wed, 07 Apr 2010 13:51:42 -0400 From: Aurelien Jarno Date: Wed, 7 Apr 2010 19:51:14 +0200 Message-Id: <1270662685-7379-8-git-send-email-aurelien@aurel32.net> In-Reply-To: <1270662685-7379-1-git-send-email-aurelien@aurel32.net> References: <1270662685-7379-1-git-send-email-aurelien@aurel32.net> Subject: [Qemu-devel] [PATCH 07/18] tcg/arm: sxtb and sxth are available starting with ARMv6 List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Andrzej Zaborowski , Aurelien Jarno Signed-off-by: Aurelien Jarno --- 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 cae6385..777c4ac 100644 --- a/tcg/arm/tcg-target.c +++ b/tcg/arm/tcg-target.c @@ -1454,7 +1454,7 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc, break; case INDEX_op_ext8s_i32: -#ifdef USE_ARMV7_INSTRUCTIONS +#ifdef USE_ARMV6_INSTRUCTIONS /* sxtb */ tcg_out32(s, 0xe6af0070 | (args[0] << 12) | args[1]); #else @@ -1465,7 +1465,7 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc, #endif break; case INDEX_op_ext16s_i32: -#ifdef USE_ARMV7_INSTRUCTIONS +#ifdef USE_ARMV6_INSTRUCTIONS /* sxth */ tcg_out32(s, 0xe6bf0070 | (args[0] << 12) | args[1]); #else -- 1.7.0.4