about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbinarycat <binarycat@envs.net>2024-07-30 13:33:25 -0400
committerbinarycat <binarycat@envs.net>2024-07-30 13:33:36 -0400
commitebd6718218642b8b63584214e35f7d69d24ae845 (patch)
treec99a149f9df34415ed9e20375cb1fe217642e028
parent4feb949617c9a24f8750d8a69197f086b0005cee (diff)
downloadrust-ebd6718218642b8b63584214e35f7d69d24ae845.tar.gz
rust-ebd6718218642b8b63584214e35f7d69d24ae845.zip
tidy
this commit cannot easily be squashed, since there is already a
PR based on the previous commit.
-rw-r--r--src/tools/run-make-support/src/symbols.rs3
-rw-r--r--tests/run-make/fmt-write-bloat/rmake.rs4
2 files changed, 5 insertions, 2 deletions
diff --git a/src/tools/run-make-support/src/symbols.rs b/src/tools/run-make-support/src/symbols.rs
index 52119ba4991..fd0c866bcc9 100644
--- a/src/tools/run-make-support/src/symbols.rs
+++ b/src/tools/run-make-support/src/symbols.rs
@@ -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.
diff --git a/tests/run-make/fmt-write-bloat/rmake.rs b/tests/run-make/fmt-write-bloat/rmake.rs
index 120c1cbccdd..4ae226ec0e2 100644
--- a/tests/run-make/fmt-write-bloat/rmake.rs
+++ b/tests/run-make/fmt-write-bloat/rmake.rs
@@ -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();