Skip to content

Commit 705b9c9

Browse files
author
git apple-llvm automerger
committed
Merge commit 'caf90aa57b69' from apple/master into swift/master-next
2 parents da6adba + caf90aa commit 705b9c9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

clang/lib/Headers/wasm_simd128.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -864,6 +864,11 @@ static __inline__ v128_t __DEFAULT_FN_ATTRS wasm_i64x2_sub(v128_t __a,
864864
return (v128_t)((__u64x2)__a - (__u64x2)__b);
865865
}
866866

867+
static __inline__ v128_t __DEFAULT_FN_ATTRS wasm_i64x2_mul(v128_t __a,
868+
v128_t __b) {
869+
return (v128_t)((__u64x2)__a * (__u64x2)__b);
870+
}
871+
867872
static __inline__ v128_t __DEFAULT_FN_ATTRS wasm_f32x4_abs(v128_t __a) {
868873
return (v128_t)__builtin_wasm_abs_f32x4((__f32x4)__a);
869874
}

0 commit comments

Comments
 (0)