Skip to content

Commit a79718f

Browse files
committed
Use new intrinsics
1 parent 0fcc406 commit a79718f

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

crates/core_simd/src/intrinsics.rs

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@ extern "platform-intrinsic" {
153153
/// equivalent to wrapping_offset
154154
pub(crate) fn simd_arith_offset<T, U>(ptr: T, offset: U) -> T;
155155

156-
/*
157156
/// equivalent to `T as U` semantics, specifically for pointers
158157
pub(crate) fn simd_cast_ptr<T, U>(ptr: T) -> U;
159158

@@ -162,17 +161,4 @@ extern "platform-intrinsic" {
162161

163162
/// convert an exposed address back to a pointer
164163
pub(crate) fn simd_from_exposed_addr<T, U>(addr: T) -> U;
165-
*/
166-
}
167-
168-
pub(crate) unsafe fn simd_cast_ptr<T, U>(_ptr: T) -> U {
169-
unimplemented!()
170-
}
171-
172-
pub(crate) unsafe fn simd_expose_addr<T, U>(_ptr: T) -> U {
173-
unimplemented!()
174-
}
175-
176-
pub(crate) unsafe fn simd_from_exposed_addr<T, U>(_addr: T) -> U {
177-
unimplemented!()
178164
}

0 commit comments

Comments
 (0)