Skip to content

Commit b679cbd

Browse files
Rename rustc_mir_dataflow/src/errors.rs into rustc_mir_dataflow/src/diagnostics.rs
1 parent 00ac562 commit b679cbd

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

File renamed without changes.

compiler/rustc_mir_dataflow/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ pub use self::framework::{
2323
use self::move_paths::MoveData;
2424

2525
pub mod debuginfo;
26+
mod diagnostics;
2627
mod drop_flag_effects;
27-
mod errors;
2828
mod framework;
2929
pub mod impls;
3030
pub mod move_paths;

compiler/rustc_mir_dataflow/src/rustc_peek.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use rustc_middle::ty::{self, Ty, TyCtxt};
55
use rustc_span::{Span, sym};
66
use tracing::{debug, info};
77

8-
use crate::errors::{
8+
use crate::diagnostics::{
99
PeekArgumentNotALocal, PeekArgumentUntracked, PeekBitNotSet, PeekMustBeNotTemporary,
1010
PeekMustBePlaceOrRefPlace, StopAfterDataFlowEndedCompilation,
1111
};

0 commit comments

Comments
 (0)