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: unsigned / double propagation weirdness?



On Feb 23, 2004, at 06:42, Richard Guenther wrote:


Hi, I'm getting confusing (but consistent along a lot of different compilers) results out of this testcase:

int main(int argc, char **argv)
{
  double dm = 1.0;
  unsigned int i = 1;
  if (-i*dm != -((double)i)*dm)
    abort();
  return 0;
}


The reason is that -i*dm really is (-i)*dm which is really ((double)(-i))*dm.

So it turns out to be ((unsigned int)-1) * 1.0 which is different from -(double)(1) * 1.0.
So it just misunderstanding on where the unary operator, -, applies to and when the cast
happens.


Thanks,
Andrew Pinski


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