Mark this instruction as possibly trapping.
(mut self)
| 218 | |
| 219 | /// Mark this instruction as possibly trapping. |
| 220 | pub fn can_trap(mut self) -> Self { |
| 221 | self.can_trap = true; |
| 222 | self |
| 223 | } |
| 224 | |
| 225 | /// Mark this instruction as one that has side-effects. |
| 226 | pub fn other_side_effects(mut self) -> Self { |
no outgoing calls
no test coverage detected