From owner-cvs-all Sun Jul 4 13:58:53 1999 Delivered-To: cvs-all@freebsd.org Received: from overcee.netplex.com.au (overcee.netplex.com.au [202.12.86.7]) by hub.freebsd.org (Postfix) with ESMTP id EDE83151D9; Sun, 4 Jul 1999 13:58:37 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 90FEA64; Mon, 5 Jul 1999 04:58:35 +0800 (WST) (envelope-from peter@netplex.com.au) X-Mailer: exmh version 2.0.2 2/24/98 To: Poul-Henning Kamp Cc: "Brian F. Feldman" , Bruce Evans , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/ld warnings.c In-reply-to: Your message of "Sun, 04 Jul 1999 20:48:14 +0200." <12904.931114094@critter.freebsd.dk> Date: Mon, 05 Jul 1999 04:58:35 +0800 From: Peter Wemm Message-Id: <19990704205835.90FEA64@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Poul-Henning Kamp wrote: > In message , "Br ian F. Feldman" w > rites: > >On Sun, 4 Jul 1999, Bruce Evans wrote: > > > >> Modified files: > >> gnu/usr.bin/ld warnings.c > >> Log: > >> Fixed missing prototype for address_to_line(). One call passes an > >> int where an unsigned long is expected. This was fatal on i386's > >> with 64-bit longs. > > > >What i386 has 64-bit longs? > > > > One of Bruce's machines I guess :-) You can configure gcc to compile with 'long' as a 64 bit entity on the x86 and it's handled by the backend the same way as the quad stuff is. However it really is 'long' as far as the language is concerned.. ie: you printf them with %ld etc, not %qd. It's great for shaking out 32/64 problems, but is a bit slow to run apparently. Cheers, -Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message