1
Fork 0

Remove #[macro_use] extern crate tracing from rustc_interface.

This commit is contained in:
Nicholas Nethercote 2024-05-22 13:50:27 +10:00
parent 725292315e
commit a7cd7bb829
4 changed files with 3 additions and 5 deletions

View file

@ -1,5 +1,4 @@
use crate::errors;
use info;
use rustc_ast as ast;
use rustc_codegen_ssa::traits::CodegenBackend;
#[cfg(parallel_compiler)]
@ -23,6 +22,7 @@ use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::OnceLock;
use std::thread;
use std::{env, iter};
use tracing::info;
/// Function pointer type that constructs a new CodegenBackend.
pub type MakeBackendFn = fn() -> Box<dyn CodegenBackend>;