summaryrefslogtreecommitdiff
path: root/gen-bases.c
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2011-08-08 09:33:02 +0200
committerTorbjorn Granlund <tege@gmplib.org>2011-08-08 09:33:02 +0200
commit9b3ead9785aa2da5dd8c791f83694309a0d70c75 (patch)
treeed8cc8fc4211a26834c67895d74b25b2882317da /gen-bases.c
parent174d4fd334cb6dce6a09e4ce3edb33bdd19d938a (diff)
downloadgmp-9b3ead9785aa2da5dd8c791f83694309a0d70c75.tar.gz
Remove static initialiser for removed struct field.
Diffstat (limited to 'gen-bases.c')
-rw-r--r--gen-bases.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gen-bases.c b/gen-bases.c
index a467c19eb..0b343d3ca 100644
--- a/gen-bases.c
+++ b/gen-bases.c
@@ -160,8 +160,8 @@ table (int limb_bits, int nail_bits)
printf ("#endif\n");
printf ("\n");
puts ("const struct bases mp_bases[257] =\n{");
- puts (" /* 0 */ { 0, 0.0, 0, 0, 0, 0 },");
- puts (" /* 1 */ { 0, 1e37, 0, 0, 0, 0 },");
+ puts (" /* 0 */ { 0, 0, 0, 0, 0 },");
+ puts (" /* 1 */ { 0, 0, 0, 0, 0 },");
for (base = 2; base <= 256; base++)
{
generate (limb_bits, nail_bits, base);