diff options
| author | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2023-07-10 13:03:48 +0000 |
|---|---|---|
| committer | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2023-08-03 09:29:00 +0000 |
| commit | 4457ef2c6db2aa65aeaba084d2d85f3355595f5a (patch) | |
| tree | eff5cae1af3af7c260958a78dc1e60c949b1e060 /compiler/rustc_error_codes/src | |
| parent | 2e6ac7fe5bb96bcc2d8c0b3e20db7cf7d2baa241 (diff) | |
| download | rust-4457ef2c6db2aa65aeaba084d2d85f3355595f5a.tar.gz rust-4457ef2c6db2aa65aeaba084d2d85f3355595f5a.zip | |
Forbid old-style `simd_shuffleN` intrinsics
Diffstat (limited to 'compiler/rustc_error_codes/src')
| -rw-r--r-- | compiler/rustc_error_codes/src/error_codes/E0439.md | 2 |
1 files changed, 1 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 24268aef222..369226c383e 100644 --- a/compiler/rustc_error_codes/src/error_codes/E0439.md +++ b/compiler/rustc_error_codes/src/error_codes/E0439.md @@ -16,7 +16,7 @@ extern "platform-intrinsic" { The `simd_shuffle` function needs the length of the array passed as last parameter in its name. Example: -``` +```ignore (no longer compiles) #![feature(platform_intrinsics)] extern "platform-intrinsic" { |
