| 77 | pub struct Constant(pub isize); |
| 78 | #[derive(Debug, Clone)] |
| 79 | pub struct Move(pub Storage, pub Storage); // A move operation, sink <- source. |
| 80 | #[derive(Debug, Clone)] |
| 81 | pub struct Simple(pub Operation); // Instructions or constant operands |
| 82 | #[derive(Debug)] |