about summary refs log tree commit diff
path: root/src/test/run-pass/simd/simd-intrinsic-generic-select.rs
AgeCommit message (Collapse)AuthorLines
2019-07-27tests: Move run-pass tests without naming conflicts to uiVadim Petrochenkov-173/+0
2019-07-17Disable simd_select_bitmask test on big endianSamuel Holland-0/+4
Per #59356 it is expected that the interpretation of the bitmask depends on target endianness. Closes #59356
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-13rustc: Add an unstable `simd_select_bitmask` intrinsicAlex Crichton-0/+30
This is going to be required for binding a number of AVX-512 intrinsics in the `stdsimd` repository, and this intrinsic is the same as `simd_select` except that it takes a bitmask as the first argument instead of a SIMD vector. This bitmask is then transmuted into a `<NN x i8>` argument, depending on how many bits it is. cc rust-lang-nursery/stdsimd#310
2018-09-26Migrate `src/test/ui/run-pass/*` back to `src/test/run-pass/`.Felix S. Klock II-0/+149
Fix #54047