[BACK]Return to udiv_w_sdiv.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / gmp / mpn / generic

Diff for /OpenXM_contrib/gmp/mpn/generic/Attic/udiv_w_sdiv.c between version 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2000/09/09 14:12:28 version 1.1.1.3, 2003/08/25 16:06:21
Line 9 
Line 9 
    GNU MP RELEASE.     GNU MP RELEASE.
   
   
 Copyright (C) 1992, 1994, 1996, 2000 Free Software Foundation, Inc.  Copyright 1992, 1994, 1996, 2000 Free Software Foundation, Inc.
   
 This file is part of the GNU MP Library.  This file is part of the GNU MP Library.
   
Line 38  mpn_udiv_w_sdiv (rp, a1, a0, d)
Line 38  mpn_udiv_w_sdiv (rp, a1, a0, d)
 {  {
   mp_limb_t q, r;    mp_limb_t q, r;
   mp_limb_t c0, c1, b1;    mp_limb_t c0, c1, b1;
   
     ASSERT (d != 0);
     ASSERT (a1 < d);
   
   if ((mp_limb_signed_t) d >= 0)    if ((mp_limb_signed_t) d >= 0)
     {      {

Legend:
Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.3

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>