Skip to content

Commit

Permalink
Remove unused code in makecrct.c
Browse files Browse the repository at this point in the history
  • Loading branch information
Dead2 committed Feb 5, 2024
1 parent 279da34 commit d7eea49
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tools/makecrct.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@

static uint32_t crc_table[256];
static z_word_t crc_big_table[256];

static uint32_t crc_braid_table[W][256];
static z_word_t crc_braid_big_table[W][256];
static uint32_t x2n_table[32];

#include "crc32_braid_comb_p.h"
Expand Down Expand Up @@ -80,9 +77,6 @@ static void make_crc_table(void) {
x2n_table[0] = p;
for (n = 1; n < 32; n++)
x2n_table[n] = p = multmodp(p, p);

/* initialize the braiding tables -- needs x2n_table[] */
braid(crc_braid_table, crc_braid_big_table, N, W);
}

/*
Expand Down

0 comments on commit d7eea49

Please sign in to comment.