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

Diff for /OpenXM_contrib/gmp/mpn/tests/Attic/try.c between version 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2000/09/09 14:12:46 version 1.1.1.2, 2000/12/01 05:45:06
Line 970  call (struct each_t *e, tryfun_t function)
Line 970  call (struct each_t *e, tryfun_t function)
       (e->d[0].p, e->s[0].p, size, shift);        (e->d[0].p, e->s[0].p, size, shift);
     break;      break;
   
       /* The two casts here are necessary for _LONG_LONG_LIMB.  They might not
          be enough if some actual calling conventions checking is implemented
          on such a system.  */
   case TRY_TYPE_POPCOUNT:    case TRY_TYPE_POPCOUNT:
     e->retval = CALLING_CONVENTIONS (function) (e->s[0].p, size);      e->retval = (* (unsigned long (*)(ANYARGS))
                     CALLING_CONVENTIONS (function)) (e->s[0].p, size);
     break;      break;
   case TRY_TYPE_HAMDIST:    case TRY_TYPE_HAMDIST:
     e->retval = CALLING_CONVENTIONS (function) (e->s[0].p, e->s[1].p, size);      e->retval = (* (unsigned long (*)(ANYARGS))
                    CALLING_CONVENTIONS (function)) (e->s[0].p, e->s[1].p, size);
     break;      break;
   
   default:    default:

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

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