This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: [gfortran] Exponentiation by integral exponents
- From: Tobias Schlüter <tobias dot schlueter at physik dot uni-muenchen dot de>
- To: Andrew Pinski <pinskia at physics dot uc dot edu>
- Cc: GCC Fortran mailing list <fortran at gcc dot gnu dot org>,"gcc at gcc dot gnu dot org list" <gcc at gcc dot gnu dot org>
- Date: Wed, 28 Apr 2004 00:07:35 +0200
- Subject: Re: [gfortran] Exponentiation by integral exponents
- References: <408ECD52.2090709@physik.uni-muenchen.de> <23B628D8-9891-11D8-9EA6-000393A6D2F2@physics.uc.edu>
Andrew Pinski wrote:
On Apr 27, 2004, at 17:14, Tobias Schlüter wrote:
FYI I have ported Andy's code for exponentiation by an integral
exponent to our tree. This is an implementation of Knuth's algorithm
...
You should not need it if you use __builtin_pow and you turn on
flag_unsafe_math_optimizations on. Maybe the best way is to have
another flag
to say expand __builtin_pow always.
Does the builtin recognize the case pow(x,(float)i), where i is an
integer? Then this sounds like a very good idea.
- Tobi