We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0fb0fa commit 581e38bCopy full SHA for 581e38b
scripts/tests.sh
@@ -139,7 +139,10 @@ function extended_sysroot_tests() {
139
140
pushd stdsimd
141
echo "[TEST] rust-lang/stdsimd"
142
- ../build/cargo test -q
+ ../build/cargo build --all-targets --target $TARGET_TRIPLE
143
+ if [[ "$HOST_TRIPLE" = "$TARGET_TRIPLE" ]]; then
144
+ ../build/cargo test -q
145
+ fi
146
popd
147
}
148
src/intrinsics/mod.rs
@@ -236,6 +236,7 @@ fn simd_reduce<'tcx>(
236
ret.write_cvalue(fx, res);
237
238
239
+// FIXME move all uses to `simd_reduce`
240
fn simd_reduce_bool<'tcx>(
241
fx: &mut FunctionCx<'_, '_, 'tcx>,
242
val: CValue<'tcx>,
0 commit comments