[project @ 1998-11-26 09:17:22 by sof]
[ghc-hetmet.git] / ghc / runtime / gmp / mpz_cmp_ui.c
1 /* mpz_cmp_ui.c -- Compare a MP_INT a with an mp_limb b.  Return positive,
2   zero, or negative based on if a > b, a == b, or a < b.
3
4 Copyright (C) 1991 Free Software Foundation, Inc.
5
6 This file is part of the GNU MP Library.
7
8 The GNU MP Library is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 The GNU MP Library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with the GNU MP Library; see the file COPYING.  If not, write to
20 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
21
22 #include "gmp.h"
23 #include "gmp-impl.h"
24
25 int
26 #ifdef __STDC__
27 mpz_cmp_ui (const MP_INT *u, mp_limb v_digit)
28 #else
29 mpz_cmp_ui (u, v_digit)
30      const MP_INT *u;
31      mp_limb v_digit;
32 #endif
33 {
34   mp_size usize = u->size;
35
36   if (usize == 0)
37     return -(v_digit != 0);
38
39   if (usize == 1)
40     {
41       mp_limb u_digit;
42
43       u_digit = u->d[0];
44       if (u_digit > v_digit)
45         return 1;
46       if (u_digit < v_digit)
47         return -1;
48       return 0;
49     }
50
51   return (usize > 0) ? 1 : -1;
52 }