There is not finitel(), so just use coercion.

This commit is contained in:
jjgarcia 2008-06-28 08:22:14 +00:00
parent 0e657faf79
commit 90e936d85c

View file

@ -203,7 +203,7 @@ make_longfloat(long double f)
if (isnanl(f)) {
cl_error(1, @'division-by-zero');
}
if (!finitel(f)) {
if (!finite(f)) {
cl_error(1, @'floating-point-overflow');
}
x = cl_alloc_object(t_longfloat);