summaryrefslogtreecommitdiff
path: root/src/gf_w128.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gf_w128.c')
-rw-r--r--src/gf_w128.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/gf_w128.c b/src/gf_w128.c
index 190f6b0..81999cb 100644
--- a/src/gf_w128.c
+++ b/src/gf_w128.c
@@ -1724,7 +1724,6 @@ int gf_w128_scratch_size(int mult_type, int region_type, int divide_type, int ar
int gf_w128_init(gf_t *gf)
{
gf_internal_t *h;
- int no_default_flag = 0;
h = (gf_internal_t *) gf->scratch;
@@ -1737,10 +1736,6 @@ int gf_w128_init(gf_t *gf)
} else {
h->prim_poly = 0x87; /* Omitting the leftmost 1 as in w=32 */
}
- if (no_default_flag == 1) {
- fprintf(stderr,"Code contains no default irreducible polynomial for given base field\n");
- return 0;
- }
}
gf->multiply.w128 = NULL;