Add sysdeps/ieee754/soft-fp.
[glibc.git] / stdlib / cmp.c
blob1480a9b165d4219af3ded9f458c66442a69f2757
1 /* mpn_cmp -- Compare two low-level natural-number integers.
3 Copyright (C) 1991-2017 Free Software Foundation, Inc.
5 This file is part of the GNU MP Library.
7 The GNU MP Library is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as published by
9 the Free Software Foundation; either version 2.1 of the License, or (at your
10 option) any later version.
12 The GNU MP Library is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
15 License for more details.
17 You should have received a copy of the GNU Lesser General Public License
18 along with the GNU MP Library; see the file COPYING.LIB. If not, see
19 <http://www.gnu.org/licenses/>. */
21 #include <gmp.h>
22 #include "gmp-impl.h"
24 /* Compare OP1_PTR/OP1_SIZE with OP2_PTR/OP2_SIZE.
25 There are no restrictions on the relative sizes of
26 the two arguments.
27 Return 1 if OP1 > OP2, 0 if they are equal, and -1 if OP1 < OP2. */
29 int
30 mpn_cmp (mp_srcptr op1_ptr, mp_srcptr op2_ptr, mp_size_t size)
32 mp_size_t i;
33 mp_limb_t op1_word, op2_word;
35 for (i = size - 1; i >= 0; i--)
37 op1_word = op1_ptr[i];
38 op2_word = op2_ptr[i];
39 if (op1_word != op2_word)
40 goto diff;
42 return 0;
43 diff:
44 /* This can *not* be simplified to
45 op2_word - op2_word
46 since that expression might give signed overflow. */
47 return (op1_word > op2_word) ? 1 : -1;