From patchwork Sat Apr 10 01:32:55 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aurelien Jarno X-Patchwork-Id: 49883 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id F25DEB7C48 for ; Sat, 10 Apr 2010 11:50:00 +1000 (EST) Received: from localhost ([127.0.0.1]:56629 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O0Poo-0001IX-4V for incoming@patchwork.ozlabs.org; Fri, 09 Apr 2010 21:49:06 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O0PZf-0004b7-Rw for qemu-devel@nongnu.org; Fri, 09 Apr 2010 21:33:27 -0400 Received: from [140.186.70.92] (port=49395 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O0PZc-0004Z1-WD for qemu-devel@nongnu.org; Fri, 09 Apr 2010 21:33:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O0PZW-0007Ew-Q7 for qemu-devel@nongnu.org; Fri, 09 Apr 2010 21:33:24 -0400 Received: from hall.aurel32.net ([88.191.82.174]:35044) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O0PZW-0007Ea-Fq for qemu-devel@nongnu.org; Fri, 09 Apr 2010 21:33:18 -0400 Received: from [10.243.122.2] (helo=volta.aurel32.net) by hall.aurel32.net with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1O0PZV-0005Mk-SM; Sat, 10 Apr 2010 03:33:17 +0200 Received: from aurel32 by volta.aurel32.net with local (Exim 4.71) (envelope-from ) id 1O0PZT-0004kN-Sv; Sat, 10 Apr 2010 03:33:15 +0200 From: Aurelien Jarno To: qemu-devel@nongnu.org Date: Sat, 10 Apr 2010 03:32:55 +0200 Message-Id: <1270863186-10180-8-git-send-email-aurelien@aurel32.net> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1270863186-10180-1-git-send-email-aurelien@aurel32.net> References: <1270863186-10180-1-git-send-email-aurelien@aurel32.net> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) Cc: Andrzej Zaborowski , Aurelien Jarno Subject: [Qemu-devel] [PATCH v2 07/18] tcg/arm: sxtb and sxth are available starting with ARMv6 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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 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 {