X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=fec.c;fp=fec.c;h=e5c2a3b83e005c8596e6bcf951702bc3cb2cf5e1;hp=233a87803ebcf06fe38d172473cfa15e23b17c96;hb=3923f936294f9f900dc8c6a1c0fe84f0e2852dca;hpb=32e646780461f96682d1191d31e08e4602ab125e diff --git a/fec.c b/fec.c index 233a8780..e5c2a3b8 100644 --- a/fec.c +++ b/fec.c @@ -74,7 +74,7 @@ static unsigned char gf_mul_table[GF_SIZE + 1][GF_SIZE + 1]; #define gf_mul(x,y) gf_mul_table[x][y] /* Compute x % GF_SIZE without a slow divide. */ -static inline unsigned char modnn(int x) +__a_const static inline unsigned char modnn(int x) { while (x >= GF_SIZE) { x -= GF_SIZE;