* fold-const.c (fold <MULT_EXPR>): Optimize both x*pow(x,c) and
authorsayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 1 Aug 2003 00:36:53 +0000 (00:36 +0000)
committersayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 1 Aug 2003 00:36:53 +0000 (00:36 +0000)
commit8c5cac787cdc66bd8a9ada6ed38c8093500e9106
treea842e3f3e11953156cef321cf6510aeed77635b1
parentc787204033c5fce87bbf38dd45561974f8cfab9c
* fold-const.c (fold <MULT_EXPR>): Optimize both x*pow(x,c) and
pow(x,c)*x as pow(x,c+1) for constant values c.  Optimize x*x
as pow(x,2.0) when the latter will be expanded back into x*x.
(fold <RDIV_EXPR>): Optimize pow(x,c)/x as pow(x,c-1).
* builtins.c (expand_builtin_pow): Ignore flag_errno_math as
pow can never set errno when used with an integer exponent.
Always use expand_powi when exponent is -1, 0, 1 or 2.
(fold_builtin): Don't rewrite pow(x,2.0) as x*x nor pow(x,-2.0)
as 1.0/(x*x).  This avoids unbounded recursion as we now prefer
the pow forms of these expressions.

* gcc.dg/builtins-27.c: New test case.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70030 138bc75d-0d04-0410-961f-82ee72b054a4
gcc/ChangeLog
gcc/builtins.c
gcc/fold-const.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/builtins-27.c [new file with mode: 0644]