This is the mail archive of the gcc-patches@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: [3.2, mainline] Fix for g77.f-torture/execute/f90-intrinsic-numeric.fon x86-64


Jan Hubicka wrote:
Hi,
g77.f-torture/execute/f90-intrinsic-numeric.f fails to compile on x86-64
because it uses TFmode for converting fp->integer in unsigned way and later
promotes the TFmode argument to be constant in CSE.  CSE attempts to force
constant into memory in order to make instruction match that needs to get
constant_alignment, for that it needs type of the constants that gets into
ffe_type_for_mode that returns NULL and we get nice crash.

This patch fixes the problem by adding long_double_type_node to it.

Bootstrapped/regtested 3.2 release and mainline.  OK for 3.2 branch and mainline?
As far as mainline is concerned, this patch is OK with me. BTW, doesn't long_double_type_node mean different things on different hardware (i.e., isn't a long double 80 bits on a plain x86 ?)

--
Toon Moene - mailto:toon@moene.indiv.nluug.nl - phoneto: +31 346 214290
Saturnushof 14, 3738 XG Maartensdijk, The Netherlands
Maintainer, GNU Fortran 77: http://gcc.gnu.org/onlinedocs/g77_news.html
Join GNU Fortran 95: http://g95.sourceforge.net/ (under construction)


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