diff options
| author | Caleb Zulawski <caleb.zulawski@gmail.com> | 2021-09-11 14:47:28 +0000 |
|---|---|---|
| committer | Caleb Zulawski <caleb.zulawski@gmail.com> | 2021-09-11 14:55:14 +0000 |
| commit | 1b3fe755ea3d39a1875f627fab5def4eae03e912 (patch) | |
| tree | a2fc1b6f1ffd29360478062716f30da422eb7945 /compiler/rustc_error_codes/src | |
| parent | b69fe57261086e70aea9d5b58819a1794bf7c121 (diff) | |
| download | rust-1b3fe755ea3d39a1875f627fab5def4eae03e912.tar.gz rust-1b3fe755ea3d39a1875f627fab5def4eae03e912.zip | |
Allow simd_shuffle to accept vectors of any length
Diffstat (limited to 'compiler/rustc_error_codes/src')
| -rw-r--r-- | compiler/rustc_error_codes/src/error_codes/E0439.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0439.md b/compiler/rustc_error_codes/src/error_codes/E0439.md index 3e663df866c..24268aef222 100644 --- a/compiler/rustc_error_codes/src/error_codes/E0439.md +++ b/compiler/rustc_error_codes/src/error_codes/E0439.md @@ -1,8 +1,10 @@ +#### Note: this error code is no longer emitted by the compiler. + The length of the platform-intrinsic function `simd_shuffle` wasn't specified. Erroneous code example: -```compile_fail,E0439 +```ignore (no longer emitted) #![feature(platform_intrinsics)] extern "platform-intrinsic" { |
