blob: 983b3b8cd6bc5a7ecd7f7651548a313df607af4f [file] [log] [blame]
Austin Schuhdace2a62020-08-18 10:56:48 -07001/* Test g++ -Wold-style-cast cleanliness.
2
3Copyright 2003 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 "gmpxx.h"
21
22
23/* This code doesn't do anything when run, it just expands various C macros
24 to see that they don't trigger compile-time warnings from g++
25 -Wold-style-cast. This option isn't used in a normal build, it has to be
26 added manually to make this test worthwhile. */
27
28void
29check_macros (void)
30{
31 mpz_t z;
32 long l = 123;
33 unsigned long u = 456;
34 int i;
35 mp_limb_t limb;
36
37 mpz_init_set_ui (z, 0L);
38 i = mpz_odd_p (z);
39 i = mpz_even_p (z);
40 i = mpz_cmp_si (z, l);
41 i = mpz_cmp_ui (z, u);
42 mpz_clear (z);
43
44 limb = GMP_NUMB_MASK;
45 limb = GMP_NUMB_MAX;
46 limb = GMP_NAIL_MASK;
47
48 mpn_divmod (&limb, &limb, 1, &limb, 1);
49 mpn_divexact_by3 (&limb, &limb, 1);
50}
51
52int
53main (void)
54{
55 return 0;
56}