Error in exclusion set macros

This commit is contained in:
Stig Venaas 2001-12-22 17:17:52 +00:00
parent 7733169933
commit 9705dcfcd6

View file

@ -112,8 +112,8 @@ static unsigned long decomps_size;
/*
* Composition exclusion table stuff.
*/
#define COMPEX_SET(c) (compexs[(c) >> 15] |= (1 << ((c) & 31)))
#define COMPEX_TEST(c) (compexs[(c) >> 15] & (1 << ((c) & 31)))
#define COMPEX_SET(c) (compexs[(c) >> 5] |= (1 << ((c) & 31)))
#define COMPEX_TEST(c) (compexs[(c) >> 5] & (1 << ((c) & 31)))
static unsigned long compexs[2048];
/*