Rename 'an block' to 'a block'

Missed this in the automatic rename of 'Ebb' to 'Block'.
This commit is contained in:
Ryan Hunt
2020-03-03 13:17:30 -06:00
parent 77e17d8f71
commit 07f335dca6
31 changed files with 96 additions and 96 deletions

View File

@@ -4,7 +4,7 @@
//! Sometimes, it is necessary to move register values to a different register in order to satisfy
//! instruction constraints.
//!
//! These register diversions are local to an block. No values can be diverted when entering a new
//! These register diversions are local to a block. No values can be diverted when entering a new
//! block.
use crate::fx::FxHashMap;
@@ -38,7 +38,7 @@ impl Diversion {
}
}
/// Keep track of diversions in an block.
/// Keep track of diversions in a block.
#[derive(Clone)]
pub struct RegDiversions {
current: FxHashMap<Value, Diversion>,