File tree Expand file tree Collapse file tree 6 files changed +4
-8
lines changed Expand file tree Collapse file tree 6 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 22name = " assert-instr-macro"
33version = " 0.1.0"
44authors = [" Alex Crichton <alex@alexcrichton.com>" ]
5+ edition = " 2018"
56
67[lib ]
78proc-macro = true
Original file line number Diff line number Diff line change 99//! function itself contains the relevant instruction.
1010#![ deny( rust_2018_idioms) ]
1111
12- extern crate proc_macro;
13- extern crate proc_macro2;
1412#[ macro_use]
1513extern crate quote;
16- extern crate syn;
1714
1815use proc_macro2:: TokenStream ;
1916use quote:: ToTokens ;
Original file line number Diff line number Diff line change 22name = " simd-test-macro"
33version = " 0.1.0"
44authors = [" Alex Crichton <alex@alexcrichton.com>" ]
5+ edition = " 2018"
56
67[lib ]
78proc-macro = true
Original file line number Diff line number Diff line change 44//! for the appropriate cfg before calling the inner test function.
55#![ deny( rust_2018_idioms) ]
66
7- extern crate proc_macro;
8- extern crate proc_macro2;
97#[ macro_use]
108extern crate quote;
119
Original file line number Diff line number Diff line change 22name = " stdarch-test"
33version = " 0.1.0"
44authors = [" Alex Crichton <alex@alexcrichton.com>" ]
5+ edition = " 2018"
56
67[dependencies ]
78assert-instr-macro = { path = " ../assert-instr-macro" }
Original file line number Diff line number Diff line change 77#![ deny( rust_2018_idioms) ]
88#![ allow( clippy:: missing_docs_in_private_items, clippy:: print_stdout) ]
99
10- extern crate assert_instr_macro;
1110#[ macro_use]
1211extern crate lazy_static;
13- extern crate simd_test_macro;
1412#[ macro_use]
1513extern crate cfg_if;
1614
@@ -24,7 +22,7 @@ cfg_if! {
2422 use wasm:: disassemble_myself;
2523 } else {
2624 mod disassembly;
27- use disassembly:: disassemble_myself;
25+ use crate :: disassembly:: disassemble_myself;
2826 }
2927}
3028
You can’t perform that action at this time.
0 commit comments