diff options
| author | bors <bors@rust-lang.org> | 2024-04-03 02:13:07 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-04-03 02:13:07 +0000 |
| commit | b688d53a1736c17e49328a706a90829a9937a91a (patch) | |
| tree | 6e0c24f050e861b05aef27b8f2c7ba4ff1b061d2 /compiler/rustc_codegen_llvm/src | |
| parent | 40f743da23d869c57556bca473c0d360f8528f94 (diff) | |
| parent | f756095571c949c3c6f3b18f26c58d9cee92651a (diff) | |
| download | rust-b688d53a1736c17e49328a706a90829a9937a91a.tar.gz rust-b688d53a1736c17e49328a706a90829a9937a91a.zip | |
Auto merge of #123396 - jhpratt:rollup-oa54mh1, r=jhpratt
Rollup of 5 pull requests Successful merges: - #122865 (Split hir ty lowerer's error reporting code in check functions to mod errors.) - #122935 (rename ptr::from_exposed_addr -> ptr::with_exposed_provenance) - #123182 (Avoid expanding to unstable internal method) - #123203 (Add `Context::ext`) - #123380 (Improve bootstrap comments) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/intrinsic.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/intrinsic.rs b/compiler/rustc_codegen_llvm/src/intrinsic.rs index ab135e3ed64..e4ec7974e90 100644 --- a/compiler/rustc_codegen_llvm/src/intrinsic.rs +++ b/compiler/rustc_codegen_llvm/src/intrinsic.rs @@ -2139,7 +2139,7 @@ fn generic_simd_intrinsic<'ll, 'tcx>( return Ok(bx.ptrtoint(args[0].immediate(), llret_ty)); } - if name == sym::simd_from_exposed_addr { + if name == sym::simd_with_exposed_provenance { let (out_len, out_elem) = require_simd!(ret_ty, SimdReturn); require!( in_len == out_len, |
