mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 09:02:44 +00:00
Back out not human readable optimization in prev. commit which shown
to generate 3bytes longer opcode.
This commit is contained in:
parent
8931e1d50e
commit
70e7b0732a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=173244
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user