Returns true if the return area is addressed via the stack pointer.
(&self)
| 275 | |
| 276 | /// Returns true if the return area is addressed via the stack pointer. |
| 277 | pub fn is_sp(&self) -> bool { |
| 278 | match self { |
| 279 | Self::SP(_) => true, |
| 280 | _ => false, |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | /// Returns true if the return area is uninitialized. |
| 285 | pub fn is_uninit(&self) -> bool { |
no outgoing calls
no test coverage detected