From patchwork Thu Oct 3 20:23:40 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 280419 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 0E5B42C00C7 for ; Fri, 4 Oct 2013 06:26:33 +1000 (EST) Received: from localhost ([::1]:45045 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VRpTi-0001bb-Sz for incoming@patchwork.ozlabs.org; Thu, 03 Oct 2013 16:26:30 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53766) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VRpRO-0006rq-IE for qemu-devel@nongnu.org; Thu, 03 Oct 2013 16:24:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VRpRI-0003ve-IV for qemu-devel@nongnu.org; Thu, 03 Oct 2013 16:24:06 -0400 Received: from mail-ie0-x235.google.com ([2607:f8b0:4001:c03::235]:59368) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VRpRI-0003vW-8Y for qemu-devel@nongnu.org; Thu, 03 Oct 2013 16:24:00 -0400 Received: by mail-ie0-f181.google.com with SMTP id tp5so6472445ieb.26 for ; Thu, 03 Oct 2013 13:23:59 -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=e4yFX0qM1jwMWhQC8TpKSawJUUcapPJlkUi1T1sw2Nw=; b=D7Af9vIQqTbn13+ObuywIE9FQTJ4cYCAF6vKxSkwBFllQpmjXkc/X0Jww6O/vPnW20 DCHRsq5maw4VgEgdwmNavVIof/LunPX/y79OuosxndTOBn18H8dxMkEIW6BROg6ENY59 t8LFI2UdtlUvJclSJTtkXNcU2aqPoSP+6JwS1FzMFh7Dn8IjgdcdGB6j0o/CmvBZai3R KdxRT+TlQMfxgFeXh9uZOqcyF9EUEQNZAwpMtje/5e7zJboAoTG68m6TO6UQyHqO0fag sQFIL+KzAJRG+OOUulKYq9nH9Z5XwLSWzu6x6auRY0mB+yl0JQlr+LsyuCw+D0gvyoNm UY6w== X-Received: by 10.50.43.170 with SMTP id x10mr3625220igl.45.1380831839673; Thu, 03 Oct 2013 13:23:59 -0700 (PDT) Received: from pebble.twiddle.net.twiddle.net (m862836d0.tmodns.net. [208.54.40.134]) by mx.google.com with ESMTPSA id yt10sm729850igb.9.1969.12.31.16.00.00 (version=TLSv1.2 cipher=AES128-GCM-SHA256 bits=128/128); Thu, 03 Oct 2013 13:23:58 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Thu, 3 Oct 2013 15:23:40 -0500 Message-Id: <1380831820-23366-6-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1380831820-23366-1-git-send-email-rth@twiddle.net> References: <1380831820-23366-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:4001:c03::235 Cc: aurelien@aurel32.net Subject: [Qemu-devel] [PATCH 5/5] 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 23dbaaf..e6b6f14 100755 --- a/configure +++ b/configure @@ -3794,14 +3794,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