checkin of 0.3.0
[pspp-builds.git] / lib / gmp / mpn / cmp.c
1 /* mpn_cmp -- Compare two low-level natural-number integers.
2
3 Copyright (C) 1991, 1993, 1994, 1996 Free Software Foundation, Inc.
4
5 This file is part of the GNU MP Library.
6
7 The GNU MP Library is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Library General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or (at your
10 option) any later version.
11
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 Library General Public
15 License for more details.
16
17 You should have received a copy of the GNU Library General Public License
18 along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20 MA 02111-1307, USA. */
21
22 #include <config.h>
23 #include "gmp.h"
24 #include "gmp-impl.h"
25
26 /* Compare OP1_PTR/OP1_SIZE with OP2_PTR/OP2_SIZE.
27    There are no restrictions on the relative sizes of
28    the two arguments.
29    Return 1 if OP1 > OP2, 0 if they are equal, and -1 if OP1 < OP2.  */
30
31 int
32 #if __STDC__
33 mpn_cmp (mp_srcptr op1_ptr, mp_srcptr op2_ptr, mp_size_t size)
34 #else
35 mpn_cmp (op1_ptr, op2_ptr, size)
36      mp_srcptr op1_ptr;
37      mp_srcptr op2_ptr;
38      mp_size_t size;
39 #endif
40 {
41   mp_size_t i;
42   mp_limb_t op1_word, op2_word;
43
44   for (i = size - 1; i >= 0; i--)
45     {
46       op1_word = op1_ptr[i];
47       op2_word = op2_ptr[i];
48       if (op1_word != op2_word)
49         goto diff;
50     }
51   return 0;
52  diff:
53   /* This can *not* be simplified to
54         op2_word - op2_word
55      since that expression might give signed overflow.  */
56   return (op1_word > op2_word) ? 1 : -1;
57 }