(BOOL_TYPE_SIZE): Fix broken SLOW_BYTE_ACCESS check.

From-SVN: r10092
This commit is contained in:
Mike Stump 1995-06-29 14:51:50 -04:00 committed by Richard Kenner
parent 30a830e969
commit e30350c795

View File

@ -98,7 +98,7 @@ static struct stack_level *decl_stack;
#ifndef BOOL_TYPE_SIZE
#ifdef SLOW_BYTE_ACCESS
#define BOOL_TYPE_SIZE BITS_PER_WORD
#define BOOL_TYPE_SIZE ((SLOW_BYTE_ACCESS) ? (BITS_PER_WORD) : (BITS_PER_UNIT))
#else
#define BOOL_TYPE_SIZE BITS_PER_UNIT
#endif