mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-01 00:18:15 +01: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
@ -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