HomeFreeBSD

Micro optimize: C standard guarantees that right shift for unsigned value

Description

Micro optimize: C standard guarantees that right shift for unsigned value
fills left bits with zero, and we have exact 32bit unsigned value
(uint32_t), so there is no reason to add "& 0x7fffffff" here.

MFC after: 1 week

Details

Provenance
acheAuthored on
Parents
rS300964: MFC r300378:
Branches
Unknown
Tags
Unknown