summaryrefslogtreecommitdiff
path: root/tune/speed.c
diff options
context:
space:
mode:
authorTorbjorn Granlund <torbjorng@google.com>2015-07-16 17:22:08 +0200
committerTorbjorn Granlund <torbjorng@google.com>2015-07-16 17:22:08 +0200
commit45887667a0f17b7e9dad4d4445d41b0173ec7776 (patch)
tree3d1bfd6650d29abca64d2c2ce324b096cbf087bf /tune/speed.c
parenta18995dbd46b787f3f01836bf3f08d13ece94dbf (diff)
downloadgmp-45887667a0f17b7e9dad4d4445d41b0173ec7776.tar.gz
Remove now redundant MPN_FILL.
Diffstat (limited to 'tune/speed.c')
-rw-r--r--tune/speed.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/tune/speed.c b/tune/speed.c
index ee4f767be..e40ed9685 100644
--- a/tune/speed.c
+++ b/tune/speed.c
@@ -91,15 +91,6 @@ SPEED_EXTRA_PROTOS2
#endif
-#define MPN_FILL(ptr, size, n) \
- do { \
- mp_size_t __i; \
- ASSERT ((size) >= 0); \
- for (__i = 0; __i < (size); __i++) \
- (ptr)[__i] = (n); \
- } while (0)
-
-
#if GMP_LIMB_BITS == 32
#define GMP_NUMB_0xAA (CNST_LIMB(0xAAAAAAAA) & GMP_NUMB_MASK)
#endif