Commit e30350c7 by Mike Stump Committed by Richard Kenner

(BOOL_TYPE_SIZE): Fix broken SLOW_BYTE_ACCESS check.

From-SVN: r10092
parent 30a830e9
...@@ -98,7 +98,7 @@ static struct stack_level *decl_stack; ...@@ -98,7 +98,7 @@ static struct stack_level *decl_stack;
#ifndef BOOL_TYPE_SIZE #ifndef BOOL_TYPE_SIZE
#ifdef SLOW_BYTE_ACCESS #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 #else
#define BOOL_TYPE_SIZE BITS_PER_UNIT #define BOOL_TYPE_SIZE BITS_PER_UNIT
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment