fix gmp-less compilation (Tony Wilson).

This commit is contained in:
Vitor Santos Costa 2009-05-02 12:34:49 -05:00
parent 3603c6eb07
commit bc39647627
1 changed files with 1 additions and 1 deletions

View File

@ -133,8 +133,8 @@ do_sll(Int i, Int j)
#ifdef USE_GMP
if (sl_overflow(i,j)) {
return Yap_gmp_sll_ints(i, j);
#endif
}
#endif
RINT(i << j);
}