From patchwork Sat Sep 22 02:04:55 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 186026 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 170902C0092 for ; Sat, 22 Sep 2012 12:05:46 +1000 (EST) Received: from localhost ([::1]:39949 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TFF6F-0005SW-U0 for incoming@patchwork.ozlabs.org; Fri, 21 Sep 2012 22:05:43 -0400 Received: from eggs.gnu.org ([208.118.235.92]:57492) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TFF5r-0005CD-VN for qemu-devel@nongnu.org; Fri, 21 Sep 2012 22:05:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TFF5p-0000ek-4B for qemu-devel@nongnu.org; Fri, 21 Sep 2012 22:05:19 -0400 Received: from mail-pb0-f45.google.com ([209.85.160.45]:59333) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TFF5o-0000du-L9 for qemu-devel@nongnu.org; Fri, 21 Sep 2012 22:05:16 -0400 Received: by pbbrp12 with SMTP id rp12so8850188pbb.4 for ; Fri, 21 Sep 2012 19:05:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=Ls8Bd1OLsP10921TIGfiuSWrQ9QYjIi2yy9UTAX/4CA=; b=01LxP8ddefaS4i6lUqPecuO7aWwLk1dTvec8MpHRTj0ZDyRBajPFn/aiSB8rzwOJfz /Wr8ZLNDI5lTBgeOlkFTH5GC7qZlDcqBMas3742u9p/G/IvzfeN8wJpmYJ3NgDdI5e0I iOByU9GEpwLhN6JBEbV+5yTX/B2lQmNfgpa5OxZWGYrxgzOSyIflovGx7EWtNiJdxTgW qFg9M9rXnWj4R3rV60yOHhtwVC6NSfMflJ7T8NUCRi6rSyXOcc4cfT/rNpDPFW55aOAI xZYGW91uxhnJ+15eOxpFddP0va1jbAuN7ofkSqN2hIuWObFZNtjE8pvMwYi0qYSayi5I DEqA== Received: by 10.68.224.133 with SMTP id rc5mr19596807pbc.130.1348279515970; Fri, 21 Sep 2012 19:05:15 -0700 (PDT) Received: from anchor.twiddle.home.com ([173.160.232.49]) by mx.google.com with ESMTPS id s4sm4956298paw.35.2012.09.21.19.05.15 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 21 Sep 2012 19:05:15 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Fri, 21 Sep 2012 19:04:55 -0700 Message-Id: <1348279507-3617-3-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.7.11.4 In-Reply-To: <1348279507-3617-1-git-send-email-rth@twiddle.net> References: <1348279507-3617-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.160.45 Cc: Blue Swirl Subject: [Qemu-devel] [PATCH 02/14] tcg-sparc: Hack in qemu_ld/st64 for 32-bit. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Not actually implemented, but at least we avoid the tcg assert at startup. Signed-off-by: Richard Henderson --- tcg/sparc/tcg-target.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tcg/sparc/tcg-target.c b/tcg/sparc/tcg-target.c index baed3b4..608fc46 100644 --- a/tcg/sparc/tcg-target.c +++ b/tcg/sparc/tcg-target.c @@ -1556,6 +1556,9 @@ static const TCGTargetOpDef sparc_op_defs[] = { { INDEX_op_brcond_i64, { "r", "rJ" } }, { INDEX_op_setcond_i64, { "r", "r", "rJ" } }, +#else + { INDEX_op_qemu_ld64, { "L", "L", "L" } }, + { INDEX_op_qemu_st64, { "L", "L", "L" } }, #endif { -1 }, };