We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4859aba commit acaa2f0Copy full SHA for acaa2f0
ci/run.sh
@@ -125,7 +125,8 @@ case $1 in
125
esac
126
127
# Verify that we haven't drop any intrinsic/symbol
128
-$cargo build --features "$INTRINSICS_FEATURES" --target $1 --example intrinsics
+RUSTFLAGS="-C debug-assertions=no" \
129
+ $cargo build --features "$INTRINSICS_FEATURES" --target $1 --example intrinsics
130
131
# Verify that there are no undefined symbols to `panic` within our
132
# implementations
src/arm.rs
@@ -1,3 +1,4 @@
1
+#[cfg(not(feature = "gen-tests"))]
2
use core::intrinsics;
3
4
#[cfg(feature = "mem")]
0 commit comments