Skip to content

Commit 581e38b

Browse files
committed
Add fixme
1 parent a0fb0fa commit 581e38b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

scripts/tests.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,10 @@ function extended_sysroot_tests() {
139139

140140
pushd stdsimd
141141
echo "[TEST] rust-lang/stdsimd"
142-
../build/cargo test -q
142+
../build/cargo build --all-targets --target $TARGET_TRIPLE
143+
if [[ "$HOST_TRIPLE" = "$TARGET_TRIPLE" ]]; then
144+
../build/cargo test -q
145+
fi
143146
popd
144147
}
145148

src/intrinsics/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ fn simd_reduce<'tcx>(
236236
ret.write_cvalue(fx, res);
237237
}
238238

239+
// FIXME move all uses to `simd_reduce`
239240
fn simd_reduce_bool<'tcx>(
240241
fx: &mut FunctionCx<'_, '_, 'tcx>,
241242
val: CValue<'tcx>,

0 commit comments

Comments
 (0)