This is the mail archive of the gcc-bugs@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]

[Bug tree-optimization/32183] Gcc 4.3 revision 125030 miscompiles 482.sphinx3 in SPEC CPU 2006



------- Comment #2 from hjl at lucon dot org  2007-06-01 23:09 -------
Is that OK to transform

      float sf;
      ...
      sf = 500 * sf;
      for (i = 0; i < ceplen; i++)
        sum[i] *= sf;

to

      for (i = 0; i < ceplen; i++)
        sum[i] = (sum[i]* 500)*sf;

You can certainly get the different results when sf is small and sum[i] is
large.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32183


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