mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-29 00:10:21 +02:00
remove dead code in scm_ceiling_quotient
* libguile/numbers.c (scm_ceiling_quotient): Remove dead code. See http://article.gmane.org/gmane.lisp.guile.devel/12685.
This commit is contained in:
parent
74ec8d786f
commit
bd61f2e64f
1 changed files with 0 additions and 2 deletions
|
@ -1500,8 +1500,6 @@ SCM_PRIMITIVE_GENERIC (scm_ceiling_quotient, "ceiling-quotient", 2, 0, 0,
|
||||||
if (SCM_LIKELY (xx >= 0))
|
if (SCM_LIKELY (xx >= 0))
|
||||||
xx1 = xx + yy - 1;
|
xx1 = xx + yy - 1;
|
||||||
}
|
}
|
||||||
else if (SCM_UNLIKELY (yy == 0))
|
|
||||||
scm_num_overflow (s_scm_ceiling_quotient);
|
|
||||||
else if (xx < 0)
|
else if (xx < 0)
|
||||||
xx1 = xx + yy + 1;
|
xx1 = xx + yy + 1;
|
||||||
qq = xx1 / yy;
|
qq = xx1 / yy;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue