[Bug libfortran/68743] [6 Regression] FAIL: gfortran.dg/aint_anint_1.f90 -O0 execution test
sgk at troutmask dot apl.washington.edu
gcc-bugzilla@gcc.gnu.org
Sun Dec 13 20:09:00 GMT 2015
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68743
--- Comment #18 from Steve Kargl <sgk at troutmask dot apl.washington.edu> ---
On Sun, Dec 13, 2015 at 07:11:46PM +0000, dave.anglin at bell dot net wrote:
>
> > Perhaps, adding a few pessimizations will prevent gcc
> > from doing the optimization.
>
> Will give these a whirl.
>
I tried to get a _builtin_floorf on i386-*-freebsd with
#include <math.h>
#ifdef floorf
#undef floorf
#endif
float floorf(float);
float
floorf(float x) {
return (float)floor(x);
}
% ~/work/bin/gcc -fdump-tree-all -c -O z.c
% grep _floorf z.c.* | more
z.c.001t.tu:@419 identifier_node strg: __builtin_floorf lngt: 16
Inspection of the other z.c.* files show that floor is called.
Is hpux defining floorf someplace that the HAVE_FLOORF test in
libgfortran isn't picking up?
Another thing that you might try is adding an explicit
#undef floor
before the prototype in c99_functions.c.
More information about the Gcc-bugs
mailing list