Remove in_band_lifetimes
for rustc_monomorphize
This commit is contained in:
parent
8f117a77d0
commit
f0b714258f
4 changed files with 6 additions and 7 deletions
|
@ -7,7 +7,7 @@ use std::io::prelude::*;
|
|||
///
|
||||
/// During the same compile all closures dump the information in the same file
|
||||
/// "closure_profile_XXXXX.csv", which is created in the directory where the compiler is invoked.
|
||||
crate fn dump_closure_profile(tcx: TyCtxt<'tcx>, closure_instance: Instance<'tcx>) {
|
||||
crate fn dump_closure_profile<'tcx>(tcx: TyCtxt<'tcx>, closure_instance: Instance<'tcx>) {
|
||||
let mut file = if let Ok(file) = OpenOptions::new()
|
||||
.create(true)
|
||||
.append(true)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue