xref: /netbsd/external/lgpl3/gmp/dist/tune/divrem1div.c (revision 671ea119)
14a1767b4Smrg /* mpn/generic/divrem_1.c forced to use plain udiv_qrnnd.
24a1767b4Smrg 
34a1767b4Smrg Copyright 2000, 2003 Free Software Foundation, Inc.
44a1767b4Smrg 
54a1767b4Smrg This file is part of the GNU MP Library.
64a1767b4Smrg 
74a1767b4Smrg The GNU MP Library is free software; you can redistribute it and/or modify
8*f81b1c5bSmrg it under the terms of either:
9*f81b1c5bSmrg 
10*f81b1c5bSmrg   * the GNU Lesser General Public License as published by the Free
11*f81b1c5bSmrg     Software Foundation; either version 3 of the License, or (at your
124a1767b4Smrg     option) any later version.
134a1767b4Smrg 
14*f81b1c5bSmrg or
15*f81b1c5bSmrg 
16*f81b1c5bSmrg   * the GNU General Public License as published by the Free Software
17*f81b1c5bSmrg     Foundation; either version 2 of the License, or (at your option) any
18*f81b1c5bSmrg     later version.
19*f81b1c5bSmrg 
20*f81b1c5bSmrg or both in parallel, as here.
21*f81b1c5bSmrg 
224a1767b4Smrg The GNU MP Library is distributed in the hope that it will be useful, but
234a1767b4Smrg WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
24*f81b1c5bSmrg or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
25*f81b1c5bSmrg for more details.
264a1767b4Smrg 
27*f81b1c5bSmrg You should have received copies of the GNU General Public License and the
28*f81b1c5bSmrg GNU Lesser General Public License along with the GNU MP Library.  If not,
29*f81b1c5bSmrg see https://www.gnu.org/licenses/.  */
304a1767b4Smrg 
314a1767b4Smrg #define OPERATION_divrem_1
324a1767b4Smrg 
334a1767b4Smrg #include "gmp-impl.h"
344a1767b4Smrg 
354a1767b4Smrg #undef DIVREM_1_NORM_THRESHOLD
364a1767b4Smrg #undef DIVREM_1_UNNORM_THRESHOLD
374a1767b4Smrg #define DIVREM_1_NORM_THRESHOLD    MP_SIZE_T_MAX
384a1767b4Smrg #define DIVREM_1_UNNORM_THRESHOLD  MP_SIZE_T_MAX
394a1767b4Smrg #define __gmpn_divrem_1  mpn_divrem_1_div
404a1767b4Smrg 
414a1767b4Smrg #include "mpn/generic/divrem_1.c"
42