Back out not human readable optimization in prev. commit which shown

to generate 3bytes longer opcode.
This commit is contained in:
Andrey A. Chernov 2007-11-01 03:18:02 +00:00
parent 8931e1d50e
commit 70e7b0732a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=173244

View File

@ -126,7 +126,7 @@ __sbistype(__ct_rune_t _c, unsigned long _f)
static __inline int
__isctype(__ct_rune_t _c, unsigned long _f)
{
return (_c & ~0x7F) ? 0 :
return (_c < 0 || _c >= 128) ? 0 :
!!(_DefaultRuneLocale.__runetype[_c] & _f);
}