Skip to content

Commit

Permalink
asm-incr-cache tests: update to use new helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
pacak committed Apr 1, 2024
1 parent aef7ffe commit dd1e1ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/run-make/asm-incr-cache/rmake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ fn main() {
for _ in 0..=1 {
rustc()
.input("lib.rs")
.arg("--emit=obj,asm,dep-info,link,mir,llvm-ir,llvm-bc")
.emit("obj,asm,dep-info,link,mir,llvm-ir,llvm-bc")
.arg("--crate-type=lib")
.arg(format!("-Cincremental={}", inc_dir.to_str().expect("temp dir?")).as_str())
.incremental(inc_dir)
.run();
}
}

0 comments on commit dd1e1ab

Please sign in to comment.