blob: 3c65d032d81dd7b828896bc902cc86fcb97721ff [file] [log] [blame]
Austin Schuhdace2a62020-08-18 10:56:48 -07001/* Test LIMB_HIGHBIT_TO_MASK.
2
3Copyright 2004 Free Software Foundation, Inc.
4
5This file is part of the GNU MP Library test suite.
6
7The GNU MP Library test suite is free software; you can redistribute it
8and/or modify it under the terms of the GNU General Public License as
9published by the Free Software Foundation; either version 3 of the License,
10or (at your option) any later version.
11
12The GNU MP Library test suite is distributed in the hope that it will be
13useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
15Public License for more details.
16
17You should have received a copy of the GNU General Public License along with
18the GNU MP Library test suite. If not, see https://www.gnu.org/licenses/. */
19
20#include <stdio.h>
21#include <stdlib.h>
22
23#include "gmp-impl.h"
24#include "tests.h"
25
26
27/* There's very little to these tests, but it's nice to have them since if
28 something has gone wrong with the arithmetic right shift business in
29 LIMB_HIGHBIT_TO_MASK then the only symptom is likely to be failures in
30 udiv_qrnnd_preinv, which would not be easy to diagnose. */
31
32int
33main (void)
34{
35 ASSERT_ALWAYS (LIMB_HIGHBIT_TO_MASK (0) == 0);
36 ASSERT_ALWAYS (LIMB_HIGHBIT_TO_MASK (GMP_LIMB_HIGHBIT) == MP_LIMB_T_MAX);
37 ASSERT_ALWAYS (LIMB_HIGHBIT_TO_MASK (MP_LIMB_T_MAX) == MP_LIMB_T_MAX);
38 ASSERT_ALWAYS (LIMB_HIGHBIT_TO_MASK (GMP_LIMB_HIGHBIT >> 1) == 0);
39 ASSERT_ALWAYS (LIMB_HIGHBIT_TO_MASK (MP_LIMB_T_MAX >> 1) == 0);
40
41 exit (0);
42}