Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: gcc/gmp/tests/mpz/t-divis_2exp.c

Issue 3050029: [gcc] GCC 4.5.0=>4.5.1 (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gcc/gmp/tests/mpz/t-div_2exp.c ('k') | gcc/gmp/tests/mpz/t-export.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gmp/tests/mpz/t-divis_2exp.c
diff --git a/gcc/gmp/tests/mpz/t-divis_2exp.c b/gcc/gmp/tests/mpz/t-divis_2exp.c
deleted file mode 100644
index 88588a3d7e70910c04d140cc99b45faf0a0d9af5..0000000000000000000000000000000000000000
--- a/gcc/gmp/tests/mpz/t-divis_2exp.c
+++ /dev/null
@@ -1,133 +0,0 @@
-/* test mpz_divisible_2exp_p */
-
-/*
-Copyright 2001 Free Software Foundation, Inc.
-
-This file is part of the GNU MP Library.
-
-The GNU MP Library is free software; you can redistribute it and/or modify
-it under the terms of the GNU Lesser General Public License as published by
-the Free Software Foundation; either version 3 of the License, or (at your
-option) any later version.
-
-The GNU MP Library is distributed in the hope that it will be useful, but
-WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
-License for more details.
-
-You should have received a copy of the GNU Lesser General Public License
-along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
-
-#include <stdio.h>
-#include <stdlib.h>
-
-#include "gmp.h"
-#include "gmp-impl.h"
-#include "tests.h"
-
-
-void
-check_one (mpz_srcptr a, unsigned long d, int want)
-{
- int got;
-
- got = (mpz_divisible_2exp_p (a, d) != 0);
- if (want != got)
- {
- printf ("mpz_divisible_2exp_p wrong\n");
- printf (" expected %d got %d\n", want, got);
- mpz_trace (" a", a);
- printf (" d=%lu\n", d);
- mp_trace_base = -16;
- mpz_trace (" a", a);
- printf (" d=0x%lX\n", d);
- abort ();
- }
-}
-
-void
-check_data (void)
-{
- static const struct {
- const char *a;
- unsigned long d;
- int want;
-
- } data[] = {
-
- { "0", 0, 1 },
- { "0", 1, 1 },
- { "0", 2, 1 },
- { "0", 3, 1 },
-
- { "1", 0, 1 },
- { "1", 1, 0 },
- { "1", 2, 0 },
- { "1", 3, 0 },
- { "1", 10000, 0 },
-
- { "4", 0, 1 },
- { "4", 1, 1 },
- { "4", 2, 1 },
- { "4", 3, 0 },
- { "4", 4, 0 },
- { "4", 10000, 0 },
-
- { "0x80000000", 31, 1 },
- { "0x80000000", 32, 0 },
- { "0x80000000", 64, 0 },
-
- { "0x100000000", 32, 1 },
- { "0x100000000", 33, 0 },
- { "0x100000000", 64, 0 },
-
- { "0x8000000000000000", 63, 1 },
- { "0x8000000000000000", 64, 0 },
- { "0x8000000000000000", 128, 0 },
-
- { "0x10000000000000000", 64, 1 },
- { "0x10000000000000000", 65, 0 },
- { "0x10000000000000000", 128, 0 },
- { "0x10000000000000000", 256, 0 },
-
- { "0x10000000000000000100000000", 32, 1 },
- { "0x10000000000000000100000000", 33, 0 },
- { "0x10000000000000000100000000", 64, 0 },
-
- { "0x1000000000000000010000000000000000", 64, 1 },
- { "0x1000000000000000010000000000000000", 65, 0 },
- { "0x1000000000000000010000000000000000", 128, 0 },
- { "0x1000000000000000010000000000000000", 256, 0 },
- { "0x1000000000000000010000000000000000", 1024, 0 },
-
- };
-
- mpz_t a, d;
- int i;
-
- mpz_init (a);
- mpz_init (d);
-
- for (i = 0; i < numberof (data); i++)
- {
- mpz_set_str_or_abort (a, data[i].a, 0);
- check_one (a, data[i].d, data[i].want);
-
- mpz_neg (a, a);
- check_one (a, data[i].d, data[i].want);
- }
-
- mpz_clear (a);
- mpz_clear (d);
-}
-
-int
-main (int argc, char *argv[])
-{
- tests_start ();
-
- check_data ();
-
- tests_end ();
- exit (0);
-}
« no previous file with comments | « gcc/gmp/tests/mpz/t-div_2exp.c ('k') | gcc/gmp/tests/mpz/t-export.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698