From patchwork Thu Oct 10 21:28:42 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 282466 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 580002C00AC for ; Fri, 11 Oct 2013 08:38:13 +1100 (EST) Received: from localhost ([::1]:51364 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VUNvu-0003qA-Jh for incoming@patchwork.ozlabs.org; Thu, 10 Oct 2013 17:38:10 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42551) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VUNnJ-0003wr-U0 for qemu-devel@nongnu.org; Thu, 10 Oct 2013 17:29:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VUNnC-0002R8-Uu for qemu-devel@nongnu.org; Thu, 10 Oct 2013 17:29:17 -0400 Received: from mail-pb0-x234.google.com ([2607:f8b0:400e:c01::234]:52487) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VUNnC-0002Qx-OI for qemu-devel@nongnu.org; Thu, 10 Oct 2013 17:29:10 -0400 Received: by mail-pb0-f52.google.com with SMTP id wz12so3157398pbc.25 for ; Thu, 10 Oct 2013 14:29:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=KintdfQXXd3jaGeQJqQ5iXm1gNi/x+ul1Nf3yoiWpik=; b=ROR5rD/Ui5S2EATbPhxfX0+tm54wIFGR1751io4AXAtCtWKNrDcmXroLhKQtRNi9oF eWJJ1PjVx/sFZWVZmO91xftNrnCJEKEW2jGnVd+lhaZIdQcvCNQLPXhggxsuYmVm7F7d gMaG7mxh0FVAa4SCBh+h56wNMHHW3jGwW7A9/f87VcI5IWRM9Kora4rjHC7Jkplc3S5R RWy7B1S7tn20RjFjaSN+/MuRru7odFpeZU/6l0iWrzjcz0dE7+knAyfRf8gJCYDHmgsY 1cgMD4ceiJJjdvefCSyvYXd89dwItpNskfes3fIbuOexG4SGZdS46JoHeveCnVkcLt+L Pcow== X-Received: by 10.66.161.169 with SMTP id xt9mr17862778pab.139.1381440549887; Thu, 10 Oct 2013 14:29:09 -0700 (PDT) Received: from anchor.twiddle.net (50-194-63-110-static.hfc.comcastbusiness.net. [50.194.63.110]) by mx.google.com with ESMTPSA id b3sm55304226pbh.7.1969.12.31.16.00.00 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 10 Oct 2013 14:29:09 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Thu, 10 Oct 2013 14:28:42 -0700 Message-Id: <1381440525-6666-15-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.8.1.4 In-Reply-To: <1381440525-6666-1-git-send-email-rth@twiddle.net> References: <1381440525-6666-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400e:c01::234 Cc: aurelien@aurel32.net, anthony@codemonkey.ws Subject: [Qemu-devel] [PULL 14/17] configure: Remove CONFIG_QEMU_LDST_OPTIMIZATION 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 No longer used. Signed-off-by: Richard Henderson --- configure | 8 -------- 1 file changed, 8 deletions(-) diff --git a/configure b/configure index aeb6bbf..57ee62a 100755 --- a/configure +++ b/configure @@ -3791,14 +3791,6 @@ echo "libs_softmmu=$libs_softmmu" >> $config_host_mak echo "ARCH=$ARCH" >> $config_host_mak -case "$cpu" in - aarch64 | arm | i386 | x86_64 | x32 | ppc*) - # The TCG interpreter currently does not support ld/st optimization. - if test "$tcg_interpreter" = "no" ; then - echo "CONFIG_QEMU_LDST_OPTIMIZATION=y" >> $config_host_mak - fi - ;; -esac if test "$debug_tcg" = "yes" ; then echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak fi