Mail Archives: djgpp-workers/2003/09/30/09:00:09
> I wonder if this works with gcc < 3? Do they have builtin versions
> of these functions? I think we should support gcc < 3. So I think
> we need our own implementation of these macros.
>
> Thanks, bye, Rich =]
>
> Index: include/math.h
> ===================================================================
> RCS file: /cvs/djgpp/djgpp/include/math.h,v
> retrieving revision 1.9
> diff -p -u -3 -r1.9 math.h
> --- include/math.h 3 Sep 2003 17:05:22 -0000 1.9
> +++ include/math.h 28 Sep 2003 09:28:11 -0000
> @@ -79,6 +79,13 @@ int __fpclassifyf(float) __attribute__((
> int __fpclassifyd(double) __attribute__((const));
> int __fpclassifyld(long double) __attribute__((const));
>
> +#define isgreater(x,y) __builtin_isgreater(x,y)
> +#define isgreaterequal(x,y) __builtin_isgreaterequal(x,y)
...
I'm not sure but this doesn't look to me like an implementation but a
definte not implemented here.
Right,
MartinS
- Raw text -