Skip to content

Commit 4718757

Browse files
committed
move asm parsing code into rustc_parse
1 parent 2f3a0a5 commit 4718757

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// N.B. these crates are loaded from the sysroot, so they need extern crate.
99
extern crate rustc_ast;
1010
extern crate rustc_ast_pretty;
11-
extern crate rustc_builtin_macros;
1211
extern crate rustc_data_structures;
1312
extern crate rustc_errors;
1413
extern crate rustc_expand;

src/parse/macros/asm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use rustc_ast::ast;
2-
use rustc_builtin_macros::asm::{AsmArg, parse_asm_args};
2+
use rustc_parse::parser::asm::{AsmArg, parse_asm_args};
33

44
use crate::rewrite::RewriteContext;
55

0 commit comments

Comments
 (0)