(self)
| 272 | /// Panics if an immediate operand is already set. |
| 273 | #[must_use] |
| 274 | pub fn id(self) -> Self { |
| 275 | assert_eq!(self.imm, Imm::None); |
| 276 | Self { |
| 277 | imm: Imm::id, |
| 278 | ..self |
| 279 | } |
| 280 | } |
| 281 | |
| 282 | /// Append a quadword-sized immediate operand (64-bit); equivalent to `io` |
| 283 | /// in the reference manual. |