From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:59104) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QCEiv-0000ue-LL for qemu-devel@nongnu.org; Tue, 19 Apr 2011 13:28:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QCEiu-0002A5-T1 for qemu-devel@nongnu.org; Tue, 19 Apr 2011 13:28:25 -0400 Received: from mail-vw0-f45.google.com ([209.85.212.45]:62917) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QCEiu-0002A0-PI for qemu-devel@nongnu.org; Tue, 19 Apr 2011 13:28:24 -0400 Received: by vws17 with SMTP id 17so5263055vws.4 for ; Tue, 19 Apr 2011 10:28:24 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <1303160412-8107-21-git-send-email-aurelien@aurel32.net> References: <1303160412-8107-1-git-send-email-aurelien@aurel32.net> <1303160412-8107-21-git-send-email-aurelien@aurel32.net> Date: Tue, 19 Apr 2011 18:28:23 +0100 Message-ID: From: Peter Maydell Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH 20/20] target-i386: switch to softfloat List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Aurelien Jarno Cc: qemu-devel@nongnu.org On 18 April 2011 22:00, Aurelien Jarno wrote: > diff --git a/configure b/configure > index da2da04..6e445b4 100755 > --- a/configure > +++ b/configure > @@ -3276,9 +3276,6 @@ if test ! -z "$gdb_xml_files" ; then > =C2=A0fi > > =C2=A0case "$target_arch2" in > - =C2=A0i386|x86_64) > - =C2=A0 =C2=A0echo "CONFIG_NOSOFTFLOAT=3Dy" >> $config_target_mak > - =C2=A0 =C2=A0;; > =C2=A0 *) > =C2=A0 =C2=A0 echo "CONFIG_SOFTFLOAT=3Dy" >> $config_target_mak > =C2=A0 =C2=A0 ;; Since the only case in this case statement is now "*", I think it would make more sense to just delete it and have: echo "CONFIG_SOFTFLOAT=3Dy" >> $config_target_mak unconditionally. -- PMM