Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Flakebi committed Feb 12, 2025
1 parent c04d9f1 commit 0d63f96
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions tests/run-make/fat-then-thin-lto/rmake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,8 @@
use run_make_support::{dynamic_lib_name, llvm_objdump, rustc};

fn main() {
rustc()
.input("lib.rs")
.opt_level("3")
.arg("-Clto=fat")
.run();
rustc()
.input("main.rs")
.panic("abort")
.opt_level("3")
.arg("-Clto=thin")
.run();
rustc().input("lib.rs").opt_level("3").arg("-Clto=fat").run();
rustc().input("main.rs").panic("abort").opt_level("3").arg("-Clto=thin").run();

llvm_objdump()
.input(dynamic_lib_name("main"))
Expand Down

0 comments on commit 0d63f96

Please sign in to comment.