Skip to content

Commit 0252629

Browse files
committed
Simplify use crate::rustc_foo::bar occurrences.
They can just be written as `use rustc_foo::bar`, which is far more standard. (I didn't even know that a `crate::` prefix was valid.)
1 parent 686ed95 commit 0252629

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shims/x86/avx2.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
use crate::rustc_middle::ty::layout::LayoutOf as _;
21
use rustc_middle::mir;
2+
use rustc_middle::ty::layout::LayoutOf as _;
33
use rustc_middle::ty::Ty;
44
use rustc_span::Symbol;
55
use rustc_target::spec::abi::Abi;

0 commit comments

Comments
 (0)