mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2025-12-31 06:40:50 -08:00
There is not finitel(), so just use coercion.
This commit is contained in:
parent
0e657faf79
commit
90e936d85c
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue