We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cb4b0a commit 1044810Copy full SHA for 1044810
crates/core_arch/src/powerpc/altivec.rs
@@ -2437,6 +2437,14 @@ pub unsafe fn vec_any_numeric(a: vector_float) -> bool {
2437
vcmpgefp_p(1, a, a) != 0
2438
}
2439
2440
+/// Any Element Out of Bounds
2441
+#[inline]
2442
+#[target_feature(enable = "altivec")]
2443
+#[cfg_attr(test, assert_instr("vcmpeqfp."))]
2444
+pub unsafe fn vec_any_out(a: vector_float) -> bool {
2445
+ vcmpeqfp_p(1, a, a) != 0
2446
+}
2447
+
2448
#[cfg(target_endian = "big")]
2449
mod endian {
2450
use super::*;
0 commit comments