Skip to content

Commit ebd6718

Browse files
committed
tidy
this commit cannot easily be squashed, since there is already a PR based on the previous commit.
1 parent 4feb949 commit ebd6718

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/tools/run-make-support/src/symbols.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
use object::{self, Object, ObjectSymbol, SymbolIterator};
21
use std::path::Path;
32

3+
use object::{self, Object, ObjectSymbol, SymbolIterator};
4+
45
/// Iterate through the symbols in an object file.
56
///
67
/// Uses a callback because `SymbolIterator` does not own its data.

tests/run-make/fmt-write-bloat/rmake.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
//@ ignore-windows
2121
//@ ignore-cross-compile
2222

23-
use run_make_support::{env::no_debug_assertions, rustc, symbols::any_symbol_contains};
23+
use run_make_support::env::no_debug_assertions;
24+
use run_make_support::rustc;
25+
use run_make_support::symbols::any_symbol_contains;
2426

2527
fn main() {
2628
rustc().input("main.rs").opt().run();

0 commit comments

Comments
 (0)