Mark this instruction as one that can load from memory.
(mut self)
| 206 | |
| 207 | /// Mark this instruction as one that can load from memory. |
| 208 | pub fn can_load(mut self) -> Self { |
| 209 | self.can_load = true; |
| 210 | self |
| 211 | } |
| 212 | |
| 213 | /// Mark this instruction as one that can store to memory. |
| 214 | pub fn can_store(mut self) -> Self { |
no outgoing calls
no test coverage detected