Skip to content

Commit cbaa80e

Browse files
committed
add {arm,aarch64,powerpc}_target_feature
1 parent c2843c8 commit cbaa80e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

crates/coresimd/src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
crate_in_paths, no_core, attr_literals, rustc_attrs, stdsimd,
1616
staged_api, fn_must_use, core_float, core_slice_ext, align_offset,
1717
doc_cfg, mmx_target_feature, tbm_target_feature,
18-
sse4a_target_feature)]
18+
sse4a_target_feature, arm_target_feature, aarch64_target_feature,
19+
mips_target_feature)]
1920
#![cfg_attr(test,
2021
feature(proc_macro, test, attr_literals, abi_vectorcall,
2122
untagged_unions))]

crates/coresimd/tests/reductions.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#![feature(stdsimd, sse4a_target_feature, avx512_target_feature)]
1+
#![feature(stdsimd, sse4a_target_feature, avx512_target_feature,
2+
powerpc_target_feature, arm_target_feature,
3+
aarch64_target_feature)]
24
#![allow(unused_attributes)]
35

46
#[macro_use]

0 commit comments

Comments
 (0)