Remove repr(simd) attribute and use a lang-item instead #63633
Labels
A-SIMD
Area: SIMD (Single Instruction Multiple Data)
C-cleanup
Category: PRs that clean code up or issues documenting cleanup.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
After #63531, we should, at some point, expose a
#[lang = "packed_simd"] struct Simd<T, const N: usize>([T; N]);
from libcore that we handle specially in the compiler instead of using a#[repr(simd)]
attribute for it.The text was updated successfully, but these errors were encountered: