rust/library/stdarch/crates
Alex Crichton 4d6fa80bb3
wasm: Add convenience aliases with unsigned names (#1174)
Naming right now for wasm simd intrinsics takes the signededness of the
instruction into account, but some operations are the same regardless of
signededness, such as `i32x4_add`. This commit adds aliases for all of
these operations under unsigned names as well (such as `u32x4_add`)
which are just a `pub use` to rename the item as two names. The goal of
this is to assist in reading code (no need to switch back and forth
between `i` and `u`) as well as writing code (no need to always remember
which operations are the same for signed/unsigned but only available
under the signed names).
2021-05-27 16:52:15 +01:00
..
assert-instr-macro Convert all crates to 2018 edition (#1109) 2021-04-11 15:26:35 +01:00
core_arch wasm: Add convenience aliases with unsigned names (#1174) 2021-05-27 16:52:15 +01:00
simd-test-macro Convert all crates to 2018 edition (#1109) 2021-04-11 15:26:35 +01:00
std_detect Move cfg!(target_feature) directly into is_*_feature_detected!() (#1141) 2021-04-24 08:02:24 +01:00
stdarch-gen Add vfma and vfms neon instructions (#1169) 2021-05-21 12:26:21 +01:00
stdarch-test Add vfma and vfms neon instructions (#1169) 2021-05-21 12:26:21 +01:00
stdarch-verify Add vst1_* neon intrinsics. (#1171) 2021-05-27 07:40:45 +01:00