public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/46726] New: x*x has different cost than pow(x,2) with -ffast-math
@ 2010-11-30 15:38 rguenth at gcc dot gnu.org
  2010-12-06 16:29 ` [Bug tree-optimization/46726] " rguenth at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: rguenth at gcc dot gnu.org @ 2010-11-30 15:38 UTC (permalink / raw)
  To: gcc-bugs

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

           Summary: x*x has different cost than pow(x,2) with -ffast-math
           Product: gcc
           Version: 4.6.0
            Status: UNCONFIRMED
          Keywords: missed-optimization
          Severity: normal
          Priority: P3
         Component: tree-optimization
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: rguenth@gcc.gnu.org
                CC: hubicka@gcc.gnu.org


double 
foo(double x, double y)
{
  return x*x + y;
}

is inlined at -O2 but not at -O2 -ffast-math (which folds x*x to pow(x, 2)).
MUL_EXPR has const 1 but __builtin_pow isn't is_inexpensive_builtin.

We probably should special-case pow(, 2) and pow(, 0.5) and sqrt where
target support is available.


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-12-07 10:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-11-30 15:38 [Bug tree-optimization/46726] New: x*x has different cost than pow(x,2) with -ffast-math rguenth at gcc dot gnu.org
2010-12-06 16:29 ` [Bug tree-optimization/46726] " rguenth at gcc dot gnu.org
2010-12-07 10:44 ` rguenth at gcc dot gnu.org
2010-12-07 10:45 ` rguenth at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).