mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-23 02:27:39 +03:00
b2db97347b
The asm generated for b < 128 || b >= 192 is not ideal, as it computes both sub-inequalities. This patch replaces it with bit magic. Fixes #32471