| 37 | #[derive(Clone)] |
| 38 | #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] |
| 39 | struct InstData { |
| 40 | operands: Vec<Operand>, |
| 41 | clobbers: Vec<RegUnit>, |
| 42 | block: Block, |
| 43 | terminator_kind: Option<TerminatorKind>, |
| 44 | is_pure: bool, |
| 45 | } |
| 46 | |
| 47 | #[derive(Clone)] |
| 48 | #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] |
nothing calls this directly
no outgoing calls
no test coverage detected