This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
Re: simple minded mapping on darwin?
- From: "Andrew Pinski" <pinskia at gmail dot com>
- To: "Jack Howarth" <howarth at bromo dot msbb dot uc dot edu>
- Cc: fortran at gcc dot gnu dot org, mrs at apple dot com, geoffk at apple dot com
- Date: Tue, 29 May 2007 21:55:41 -0700
- Subject: Re: simple minded mapping on darwin?
- Dkim-signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=TvLKkxOMLvmhrIk8XE6Sxm4XvrEuOLE1UkOGFtkt7IIq84JijO6dMeM3ozDH0VOhsp8X07evrHP5/MPOg7mcVEORBcXIHeikx46lOLkaH202EkJroeM9a7Wg6QOlC/darB6+Y45eUBq7Q+MXEdngjgYAY/dsPgIAcSyRr/XxnKk=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=KP45SA4AbnpYxu8nSkpcz99W0uDjbS7a/PD2PXKlA9jhNRy4YwUwGWA1thVvhgz1Fh0hNI6adc2ID6O5g3bpLmdzYof2XH9s5io/276ytpe328Jqsa/z9581Bi/7GZbKkhHPSQxVTXHFTe/QagiqxX9ImtllSqDAtjcivWqPPgM=
- References: <20070530044857.GA14645@bromo.msbb.uc.edu>
On 5/29/07, Jack Howarth <howarth@bromo.msbb.uc.edu> wrote:
On reflection, perhaps we should scrap Andrew's patch and
try a very simple minded fix to the long double issue in
gfortran. If we could change the macro in gcc/fortran/f95-lang.c
from...
This is a bad idea. My patch actually worked at one point. Anyways
your patch does not work for the C (or C++) case of:
int main(void)
{
long double a =10.0L;
__builtin_printf("%Lf\t%Lf\n", a,a);
}
Thanks,
Andrew Pinski