about summary refs log tree commit diff
path: root/compiler/rustc_codegen_cranelift/src
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2024-03-23 23:00:53 +0100
committerRalf Jung <post@ralfj.de>2024-03-23 23:03:37 +0100
commitf2cff5ebb9ebc9712eec88dd5ec578f76efb33bc (patch)
tree15261fea86c99fff5d3cda1b6edca48749433186 /compiler/rustc_codegen_cranelift/src
parent038e7c6c38b9e1713fb258c783441bb0102b8492 (diff)
downloadrust-f2cff5ebb9ebc9712eec88dd5ec578f76efb33bc.tar.gz
rust-f2cff5ebb9ebc9712eec88dd5ec578f76efb33bc.zip
also rename the SIMD intrinsic
Diffstat (limited to 'compiler/rustc_codegen_cranelift/src')
-rw-r--r--compiler/rustc_codegen_cranelift/src/intrinsics/simd.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_cranelift/src/intrinsics/simd.rs b/compiler/rustc_codegen_cranelift/src/intrinsics/simd.rs
index 4d55a95aa9d..783ad5d1dd1 100644
--- a/compiler/rustc_codegen_cranelift/src/intrinsics/simd.rs
+++ b/compiler/rustc_codegen_cranelift/src/intrinsics/simd.rs
@@ -965,7 +965,7 @@ pub(super) fn codegen_simd_intrinsic_call<'tcx>(
             });
         }
 
-        sym::simd_expose_addr | sym::simd_from_exposed_addr | sym::simd_cast_ptr => {
+        sym::simd_expose_addr | sym::simd_with_exposed_provenance | sym::simd_cast_ptr => {
             intrinsic_args!(fx, args => (arg); intrinsic);
             ret.write_cvalue_transmute(fx, arg);
         }