On Tue, Jun 27, 2006 at 11:18:13AM +0000, Joseph S. Myers wrote: > On Mon, 26 Jun 2006, H. J. Lu wrote: > > > I have no strong opinion on the support for __float80. But the current > > behavior seems odd to me. Also, we have incomplete support for > > __float128. There is no runtime support for __float128 at all on > > x86-64. > > Feel free to add such support using soft-fp as described at the bottom of > <http://gcc.gnu.org/wiki/Software%20floating%20point>. >
There are 2 problems with __float128 runtime support if it is different from single, double and long double: 1. __float128 isn't enabled even if gcc supports it. 2. __float128 I/O isn't supported even if __float128 is enabled. My patch: http://sources.redhat.com/ml/libc-alpha/2004-05/msg00049.html tried to address those. H.J.