Skip to content

Commit 8b2b3b2

Browse files
authored
tidy and llvm fix
1 parent 0d31b22 commit 8b2b3b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/run-make/reset-codegen-1/rmake.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use run_make_support::{rustc, tmp_dir};
1111
use std::fs;
1212

1313
fn compile(emit: Option<&str>, output_dir: &str) {
14-
let rustc = rustc();
14+
let mut rustc = rustc();
1515
let rustc = rustc.codegen_units(4).output(tmp_dir().join(output_dir)).input("foo.rs");
1616
if let Some(emit) = emit {
1717
rustc.emit(emit);
@@ -28,7 +28,7 @@ fn main() {
2828
("link-output", Some("link")),
2929
("obj-output", Some("obj")),
3030
("dep-output", Some("dep-info")),
31-
("multi-output", Some("asm,obj"))
31+
("multi-output", Some("asm,obj")),
3232
];
3333
for (output_dir, emit) in flags {
3434
fs::remove_file(output_dir).unwrap_or_default();

0 commit comments

Comments
 (0)