------- Comment #1 from fxcoudert at gcc dot gnu dot org 2007-11-19 16:54 ------- EXPONENT is implemented in libgfortran with frexpf. Can you tell us what the following gives:
int main() { float x = 5.87747175E-39; int i; __builtin_frexpf (x, &i); __builtin_printf ("%d\n", i); } -- fxcoudert at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fxcoudert at gcc dot gnu dot | |org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34141