diff options
| author | Camille GILLOT <gillot.camille@gmail.com> | 2021-05-11 15:03:53 +0200 |
|---|---|---|
| committer | Camille GILLOT <gillot.camille@gmail.com> | 2021-06-01 21:22:55 +0200 |
| commit | ba0ac88cd5280795765f6fb1e5106447c98d81cc (patch) | |
| tree | e1703b6dd75a8dba854a9d19a149f8a7183e5190 /compiler/rustc_interface/src/passes.rs | |
| parent | 7f9ab0300cd66f6f616e03ea90b2d71af474bf28 (diff) | |
| download | rust-ba0ac88cd5280795765f6fb1e5106447c98d81cc.tar.gz rust-ba0ac88cd5280795765f6fb1e5106447c98d81cc.zip | |
Avoid a clone of output_filenames.
Diffstat (limited to 'compiler/rustc_interface/src/passes.rs')
| -rw-r--r-- | compiler/rustc_interface/src/passes.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/passes.rs b/compiler/rustc_interface/src/passes.rs index dd4caab28dc..1666754d29a 100644 --- a/compiler/rustc_interface/src/passes.rs +++ b/compiler/rustc_interface/src/passes.rs @@ -799,7 +799,7 @@ pub fn create_global_ctxt<'tcx>( query_result_on_disk_cache, queries.as_dyn(), &crate_name, - &outputs, + outputs, ) }) }); |
