File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -85,12 +85,6 @@ mod theme;
8585mod visit_ast;
8686mod visit_lib;
8787
88- struct Output {
89- krate : clean:: Crate ,
90- renderinfo : config:: RenderInfo ,
91- renderopts : config:: RenderOptions ,
92- }
93-
9488pub fn main ( ) {
9589 rustc_driver:: set_sigpipe_handler ( ) ;
9690 rustc_driver:: install_ice_hook ( ) ;
@@ -521,15 +515,13 @@ fn main_options(options: config::Options) -> MainResult {
521515
522516 krate. version = crate_version;
523517
524- let out = Output { krate, renderinfo, renderopts } ;
525518
526519 if show_coverage {
527520 // if we ran coverage, bail early, we don't need to also generate docs at this point
528521 // (also we didn't load in any of the useful passes)
529522 return Ok ( ( ) ) ;
530523 }
531524
532- let Output { krate, renderinfo, renderopts } = out;
533525 info ! ( "going to format" ) ;
534526 let ( error_format, edition, debugging_options) = diag_opts;
535527 let diag = core:: new_handler ( error_format, None , & debugging_options) ;
You can’t perform that action at this time.
0 commit comments