@@ -229,9 +229,9 @@ pub fn compile_input(sess: &Session,
229
229
230
230
phase_6_link_output ( sess, & trans, & outputs) ;
231
231
232
- controller_entry_point ! ( after_compilation_done ,
232
+ controller_entry_point ! ( compilation_done ,
233
233
sess,
234
- CompileState :: state_after_compilation_done ( input, sess, outdir, output) ,
234
+ CompileState :: state_when_compilation_done ( input, sess, outdir, output) ,
235
235
Ok ( ( ) ) ) ;
236
236
237
237
Ok ( ( ) )
@@ -281,7 +281,7 @@ pub struct CompileController<'a> {
281
281
pub after_hir_lowering : PhaseController < ' a > ,
282
282
pub after_analysis : PhaseController < ' a > ,
283
283
pub after_llvm : PhaseController < ' a > ,
284
- pub after_compilation_done : PhaseController < ' a > ,
284
+ pub compilation_done : PhaseController < ' a > ,
285
285
286
286
pub make_glob_map : MakeGlobMap ,
287
287
}
@@ -294,7 +294,7 @@ impl<'a> CompileController<'a> {
294
294
after_hir_lowering : PhaseController :: basic ( ) ,
295
295
after_analysis : PhaseController :: basic ( ) ,
296
296
after_llvm : PhaseController :: basic ( ) ,
297
- after_compilation_done : PhaseController :: basic ( ) ,
297
+ compilation_done : PhaseController :: basic ( ) ,
298
298
make_glob_map : MakeGlobMap :: No ,
299
299
}
300
300
}
@@ -463,7 +463,7 @@ impl<'a, 'b, 'ast, 'tcx> CompileState<'a, 'b, 'ast, 'tcx> {
463
463
}
464
464
}
465
465
466
- fn state_after_compilation_done ( input : & ' a Input ,
466
+ fn state_when_compilation_done ( input : & ' a Input ,
467
467
session : & ' ast Session ,
468
468
out_dir : & ' a Option < PathBuf > ,
469
469
out_file : & ' a Option < PathBuf > )
0 commit comments