Skip to content

Commit be797e2

Browse files
Fixed error with i64x2 bitmask
1 parent 135c302 commit be797e2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

crates/core_arch/src/wasm32/simd128.rs

+3
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,9 @@ extern "C" {
190190
fn llvm_widen_low_i32x4_u(a: i16x8) -> i32x4;
191191
#[link_name = "llvm.wasm.widen.high.unsigned.v4i32.v8i16"]
192192
fn llvm_widen_high_i32x4_u(a: i16x8) -> i32x4;
193+
194+
#[link_name = "llvm.wasm.bitmask.v2i64"]
195+
fn llvm_bitmask_i64x2(a: i64x2) -> i32;
193196
}
194197

195198
/// Loads a `v128` vector from the given heap address.

0 commit comments

Comments
 (0)