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]

Re: expand and truncate and 387





> What?  The accrued exception bits are just that -- accrued.


Here is perhaps a better example, observed in the i386 port.


float f = 1.0e-40;
float g;
double d;

x()
{
  g = f;  /* float -> float   does not set denormal flag  */
  d = f;  /* float -> double  sets denormal flag */
}


Which should it be?



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