about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm
diff options
context:
space:
mode:
authorjoboet <jonasboettiger@icloud.com>2024-04-03 15:17:00 +0200
committerjoboet <jonasboettiger@icloud.com>2024-04-03 16:00:38 +0200
commit989660c3e6efc1c5eb2e822f68863df7d06cbcb4 (patch)
tree16312a00866a10a9579ddfce929979d67e27577d /compiler/rustc_codegen_llvm
parent99c42d234064bede688a02d7076d369ecce1a513 (diff)
downloadrust-989660c3e6efc1c5eb2e822f68863df7d06cbcb4.tar.gz
rust-989660c3e6efc1c5eb2e822f68863df7d06cbcb4.zip
rename `expose_addr` to `expose_provenance`
Diffstat (limited to 'compiler/rustc_codegen_llvm')
-rw-r--r--compiler/rustc_codegen_llvm/src/intrinsic.rs2
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 e4ec7974e90..dc52dd156b7 100644
--- a/compiler/rustc_codegen_llvm/src/intrinsic.rs
+++ b/compiler/rustc_codegen_llvm/src/intrinsic.rs
@@ -2111,7 +2111,7 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
         return Ok(args[0].immediate());
     }
 
-    if name == sym::simd_expose_addr {
+    if name == sym::simd_expose_provenance {
         let (out_len, out_elem) = require_simd!(ret_ty, SimdReturn);
         require!(
             in_len == out_len,