This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: support of 128 bit long real on linux for ia32


On Wed, Feb 13, 2002 at 08:07:43AM -0500, Stephen L Moshier wrote:
> 
> > Do plan to enhance your compiler in order to get
> > "long double" in C compatible with real(16) in fortran ?
> 
> It was a straightforward job to implement the "long double"
> type in i386 gcc as 128-bit soft-float TFmode with 113-bit precision.
> I might still have the patches for that (though they would be about
> eight years old now).
> 
> You cannot easily have both 80-bit and 128-bit support in gcc at the
> same time, however.  I think you might have to implement
> a "long long double" which probably no one has done yet.

I don't think you need long long double, double __attribute__((mode(TF)));
is IMHO the way to go.
Just IMHO we need separate TXFmode, which would be the current TFmode in
with INTEL_EXTENDED_IEEE_FORMAT != 0 (and TFmode would be current TFmode
in non-intel format).

	Jakub


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]