Skip to content

Commit

Permalink
Update docs for v128_any_true
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed May 3, 2021
1 parent 50b6b7a commit 930921e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/core_arch/src/wasm32/simd128.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1822,7 +1822,7 @@ pub unsafe fn v128_bitselect(v1: v128, v2: v128, c: v128) -> v128 {
transmute(llvm_bitselect(v1.as_i8x16(), v2.as_i8x16(), c.as_i8x16()))
}

/// Returns true if any lane is nonzero or false if all lanes are zero.
/// Returns `true` if any bit in `a` is set, or `false` otherwise.
#[inline]
#[cfg_attr(test, assert_instr(v128.any_true))]
#[target_feature(enable = "simd128")]
Expand Down

0 comments on commit 930921e

Please sign in to comment.