Skip to content

Commit

Permalink
tidy
Browse files Browse the repository at this point in the history
this commit cannot easily be squashed, since there is already a
PR based on the previous commit.
  • Loading branch information
lolbinarycat committed Jul 30, 2024
1 parent 4feb949 commit ebd6718
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/tools/run-make-support/src/symbols.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use object::{self, Object, ObjectSymbol, SymbolIterator};
use std::path::Path;

use object::{self, Object, ObjectSymbol, SymbolIterator};

/// Iterate through the symbols in an object file.
///
/// Uses a callback because `SymbolIterator` does not own its data.
Expand Down
4 changes: 3 additions & 1 deletion tests/run-make/fmt-write-bloat/rmake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
//@ ignore-windows
//@ ignore-cross-compile

use run_make_support::{env::no_debug_assertions, rustc, symbols::any_symbol_contains};
use run_make_support::env::no_debug_assertions;
use run_make_support::rustc;
use run_make_support::symbols::any_symbol_contains;

fn main() {
rustc().input("main.rs").opt().run();
Expand Down

0 comments on commit ebd6718

Please sign in to comment.