Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#56855 - nikic:remove-cttz-hack, r=nagisa
Remove u8 cttz hack This issue has since been fixed in LLVM: llvm-mirror/llvm@1886c8e Furthermore this code doesn't actually work, because the 8 literal does not match the $BITS provided from the macro invocation, so effectively this was just dead code. Ref rust-lang#43024. What LLVM does is still not ideal for CPUs that only have bsf but not tzcnt, will create a patch for that later. r? @nagisa
- Loading branch information