Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 23 Sep 2002 16:34:05 -0700
From:      "David O'Brien" <obrien@FreeBSD.org>
To:        John Baldwin <jhb@FreeBSD.org>
Cc:        cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Mikhail Teterin <mi+mx@aldan.algebra.com>, Mike Barcroft <mike@FreeBSD.org>
Subject:   Re: cvs commit: src/contrib/gcc toplev.c
Message-ID:  <20020923233405.GB79965@dragon.nuxi.com>
In-Reply-To: <XFMail.20020923154344.jhb@FreeBSD.org>
References:  <20020923192518.GA78132@dragon.nuxi.com> <XFMail.20020923154344.jhb@FreeBSD.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Mon, Sep 23, 2002 at 03:43:44PM -0400, John Baldwin wrote:
> Is it due to stuff in __asm restraints that diff's like these would fix:
> 
> --- i386/i386/math_emulate.c    20 Jun 2002 07:23:08 -0000      1.41
> +++ i386/i386/math_emulate.c    17 Jul 2002 02:53:57 -0000
> @@ -760,8 +760,7 @@
>         if ((ti.sign = (ti.b < 0)) != 0)
>                 __asm__("notl %0 ; notl %1\n\t"
>                         "addl $1,%0 ; adcl $0,%1"
> -                       :"=r" (ti.a),"=r" (ti.b)
> -                       :"0" (ti.a),"1" (ti.b));
> +                       :"+r" (ti.a),"+r" (ti.b));
>         int_to_real(&ti,tmp);
>  }
> 
> (etc.. I have a bunch of these)

We're you going to do a clean up pass a few months ago? (or was it
someone else)  Did you get very far?

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020923233405.GB79965>