File tree Expand file tree Collapse file tree 4 files changed +2
-6
lines changed Expand file tree Collapse file tree 4 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,6 @@ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
147147name = " core_arch"
148148version = " 0.1.5"
149149dependencies = [
150- " std_detect" ,
151150 " stdarch-test" ,
152151 " syscalls" ,
153152]
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ maintenance = { status = "experimental" }
2222
2323[dev-dependencies ]
2424stdarch-test = { version = " 0.*" , path = " ../stdarch-test" }
25- std_detect = { version = " 0.*" , path = " ../std_detect" }
2625
2726[target .'cfg(all(target_arch = "x86_64", target_os = "linux"))' .dev-dependencies ]
2827syscalls = { version = " 0.6.18" , default-features = false }
Original file line number Diff line number Diff line change 7575#[ cfg( test) ]
7676#[ macro_use]
7777extern crate std;
78- #[ cfg( test) ]
79- #[ macro_use]
80- extern crate std_detect;
78+
8179#[ path = "mod.rs" ]
8280mod core_arch;
8381
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ pub fn simd_test(
8989 for feature in target_features {
9090 let q = quote_spanned ! {
9191 proc_macro2:: Span :: call_site( ) =>
92- if !#macro_test!( #feature) {
92+ if !:: std :: arch :: #macro_test!( #feature) {
9393 missing_features. push( #feature) ;
9494 }
9595 } ;
You can’t perform that action at this time.
0 commit comments