Skip to content

Commit e61aaf9

Browse files
committed
Disable new intrinsics for bootstrap
1 parent d655dd6 commit e61aaf9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Diff for: library/core/src/intrinsics/simd.rs

+2
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ extern "platform-intrinsic" {
257257
/// type).
258258
///
259259
/// `mask` must only contain `0` or `!0` values.
260+
#[cfg(not(bootstrap))]
260261
pub fn simd_masked_load<V, U, T>(mask: V, ptr: U, val: T) -> T;
261262

262263
/// Write to a vector of pointers.
@@ -276,6 +277,7 @@ extern "platform-intrinsic" {
276277
/// type).
277278
///
278279
/// `mask` must only contain `0` or `!0` values.
280+
#[cfg(not(bootstrap))]
279281
pub fn simd_masked_store<V, U, T>(mask: V, ptr: U, val: T);
280282

281283
/// Add two simd vectors elementwise, with saturation.

0 commit comments

Comments
 (0)