Is this [`ABIOperand`] in a register.
(&self)
| 188 | |
| 189 | /// Is this [`ABIOperand`] in a register. |
| 190 | pub fn is_reg(&self) -> bool { |
| 191 | match *self { |
| 192 | ABIOperand::Reg { .. } => true, |
| 193 | _ => false, |
| 194 | } |
| 195 | } |
| 196 | |
| 197 | /// Unwraps the underlying register if it is one. |
| 198 | /// |
no outgoing calls
no test coverage detected