Remove DefAlloc -- no longer needed.

This commit is contained in:
Chris Fallin
2022-01-19 23:57:31 -08:00
parent 3b037f3c9e
commit ccd6b4fc2c
4 changed files with 8 additions and 127 deletions

View File

@@ -1119,13 +1119,6 @@ pub enum Edit {
/// are the same if the vreg changes; this allows proper metadata
/// tracking even when moves are elided.
Move { from: Allocation, to: Allocation },
/// Define a particular Allocation to contain a particular VReg. Useful
/// for the checker.
///
/// `DefAlloc` edits are only emitted when the `"checker"` Cargo feature is
/// enabled.
DefAlloc { alloc: Allocation, vreg: VReg },
}
/// Wrapper around either an original instruction or an inserted edit.