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

@ -11,7 +11,6 @@
use rustc_errors::registry::Registry;
use rustc_errors::{DiagCtxt, ErrorGuaranteed};
use rustc_lint::LintStore;
use rustc_middle::ty;
use rustc_middle::ty::CurrentGcx;
use rustc_middle::util::Providers;
@ -28,6 +27,7 @@
use std::path::PathBuf;
use std::result;
use std::sync::Arc;
use tracing::trace;
pub type Result<T> = result::Result<T, ErrorGuaranteed>;

View File

@ -4,9 +4,6 @@
#![feature(thread_spawn_unchecked)]
#![feature(try_blocks)]
#[macro_use]
extern crate tracing;
mod callbacks;
mod errors;
pub mod interface;

View File

@ -39,6 +39,7 @@
use std::path::{Path, PathBuf};
use std::sync::LazyLock;
use std::{env, fs, iter};
use tracing::{info, instrument};
pub fn parse<'a>(sess: &'a Session) -> PResult<'a, ast::Crate> {
let krate = sess.time("parse_crate", || match &sess.io.input {

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::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>;