Skip to content

Commit 6ba0a84

Browse files
committed
rewrite lto-empty to rmake
1 parent c290e9d commit 6ba0a84

File tree

3 files changed

+17
-14
lines changed

3 files changed

+17
-14
lines changed

src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ run-make/long-linker-command-lines-cmd-exe/Makefile
9797
run-make/long-linker-command-lines/Makefile
9898
run-make/longjmp-across-rust/Makefile
9999
run-make/lto-dylib-dep/Makefile
100-
run-make/lto-empty/Makefile
101100
run-make/lto-linkage-used-attr/Makefile
102101
run-make/lto-no-link-whole-rlib/Makefile
103102
run-make/lto-smoke-c/Makefile

tests/run-make/lto-empty/Makefile

-13
This file was deleted.

tests/run-make/lto-empty/rmake.rs

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// Compiling Rust code twice in a row with "fat" link-time-optimizations used to cause
2+
// an internal compiler error (ICE). This was due to how the compiler would cache some modules
3+
// to make subsequent compilations faster, at least one of which was required for LTO to link
4+
// into. After this was patched in #63956, this test checks that the bug does not make
5+
// a resurgence.
6+
// See https://github.com/rust-lang/rust/issues/63349
7+
8+
//@ ignore-cross-compile
9+
10+
use run_make_support::rustc;
11+
12+
fn main() {
13+
rustc().input("lib.rs").arg("-Clto=fat").opt_level("3").incremental("inc-fat").run();
14+
rustc().input("lib.rs").arg("-Clto=fat").opt_level("3").incremental("inc-fat").run();
15+
rustc().input("lib.rs").arg("-Clto=thin").opt_level("3").incremental("inc-thin").run();
16+
rustc().input("lib.rs").arg("-Clto=thin").opt_level("3").incremental("inc-thin").run();
17+
}

0 commit comments

Comments
 (0)