mirror of https://git.musl-libc.org/git/musl
Browse Source
casting to int would not be correct because high bits could be lost. mapping the high bits down onto low bits would be costlier in the common case where the result is just used in a conditional. changing the type of the bit array elements to int would permute the order of the bit array on 64-bit big endian systems, so that's not an option either.rs-1.0
1 changed files with 1 additions and 1 deletions
Loading…
Reference in new issue