From patchwork Thu May 27 20:46:36 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 53837 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 D4D43B7D1E for ; Fri, 28 May 2010 08:14:32 +1000 (EST) Received: from localhost ([127.0.0.1]:35014 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OHlLR-0006wd-Fy for incoming@patchwork.ozlabs.org; Thu, 27 May 2010 18:14:29 -0400 Received: from [140.186.70.92] (port=56431 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OHjzk-0002RX-Qa for qemu-devel@nongnu.org; Thu, 27 May 2010 16:48:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OHjzj-0005VE-QI for qemu-devel@nongnu.org; Thu, 27 May 2010 16:48:00 -0400 Received: from are.twiddle.net ([75.149.56.221]:51276) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OHjzj-0005V2-L1 for qemu-devel@nongnu.org; Thu, 27 May 2010 16:47:59 -0400 Received: from anchor.twiddle.home (anchor.twiddle.home [172.31.0.4]) by are.twiddle.net (Postfix) with ESMTPS id 13622576; Thu, 27 May 2010 13:47:59 -0700 (PDT) Received: from anchor.twiddle.home (anchor.twiddle.home [127.0.0.1]) by anchor.twiddle.home (8.14.4/8.14.4) with ESMTP id o4RKlw4W031064; Thu, 27 May 2010 13:47:58 -0700 Received: (from rth@localhost) by anchor.twiddle.home (8.14.4/8.14.4/Submit) id o4RKlvII031063; Thu, 27 May 2010 13:47:57 -0700 From: Richard Henderson To: qemu-devel@nongnu.org Date: Thu, 27 May 2010 13:46:36 -0700 Message-Id: <1274993204-30766-55-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.7.0.1 In-Reply-To: <1274993204-30766-1-git-send-email-rth@twiddle.net> References: <1274993204-30766-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) Cc: agraf@suse.de, aurelien@aurel32.net Subject: [Qemu-devel] [PATCH 54/62] tcg-s390: Do not require the extended-immediate facility. 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 All of the instructions from this group are now conditionalized. Signed-off-by: Richard Henderson --- configure | 2 +- tcg/s390/tcg-target.c | 4 ---- 2 files changed, 1 insertions(+), 5 deletions(-) diff --git a/configure b/configure index 56dee88..f818198 100755 --- a/configure +++ b/configure @@ -701,7 +701,7 @@ case "$cpu" in host_guest_base="yes" ;; s390x) - QEMU_CFLAGS="-m64 -march=z9-109 $QEMU_CFLAGS" + QEMU_CFLAGS="-m64 -march=z990 $QEMU_CFLAGS" LDFLAGS="-m64 $LDFLAGS" host_guest_base="yes" ;; diff --git a/tcg/s390/tcg-target.c b/tcg/s390/tcg-target.c index 084448a..0dc71e2 100644 --- a/tcg/s390/tcg-target.c +++ b/tcg/s390/tcg-target.c @@ -2010,10 +2010,6 @@ static void query_facilities(void) fprintf(stderr, "TCG: long-displacement facility is required\n"); fail = 1; } - if ((facilities & FACILITY_EXT_IMM) == 0) { - fprintf(stderr, "TCG: extended-immediate facility is required\n"); - fail = 1; - } if (fail) { exit(-1); }