Skip to content

Commit 4fad2e7

Browse files
committed
Fix formatting
1 parent 203c951 commit 4fad2e7

File tree

1 file changed

+2
-11
lines changed
  • tests/run-make/fat-then-thin-lto

1 file changed

+2
-11
lines changed

tests/run-make/fat-then-thin-lto/rmake.rs

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,8 @@
88
use run_make_support::{dynamic_lib_name, llvm_objdump, rustc};
99

1010
fn main() {
11-
rustc()
12-
.input("lib.rs")
13-
.opt_level("3")
14-
.arg("-Clto=fat")
15-
.run();
16-
rustc()
17-
.input("main.rs")
18-
.panic("abort")
19-
.opt_level("3")
20-
.arg("-Clto=thin")
21-
.run();
11+
rustc().input("lib.rs").opt_level("3").arg("-Clto=fat").run();
12+
rustc().input("main.rs").panic("abort").opt_level("3").arg("-Clto=thin").run();
2213

2314
llvm_objdump()
2415
.input(dynamic_lib_name("main"))

0 commit comments

Comments
 (0)