const simd_extract/insert are no longer usable in latest nightly (2020-01-02) #67847
Labels
A-const-eval
Area: Constant evaluation (MIR interpretation)
A-SIMD
Area: SIMD (Single Instruction Multiple Data)
B-unstable
Blocker: Implemented in the nightly compiler and unstable.
requires-nightly
This issue requires a nightly compiler in some way.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
A few months ago #64738 introduced
const
simd_insert
/simd_extract
, which I then integrated into my application via a fork ofpacked_simd
.However, upon upgrading to the latest nightly (
rustc 1.42.0-nightly (0a58f5864 2020-01-02)
), it was suddenly non-const.Furthermore, It seems the ability to make it
const
viarustc_const_unstable
is not possible in user applications, making theconst
versions of this effectively rustc internal-only now, breaking my fork ofpacked_simd
and my application.The text was updated successfully, but these errors were encountered: