Look up a stack slot entity.
(&self, ss: StackSlot)
| 35 | |
| 36 | /// Look up a stack slot entity. |
| 37 | pub fn contains_ss(&self, ss: StackSlot) -> bool { |
| 38 | self.locations.contains_key(&ss.into()) |
| 39 | } |
| 40 | |
| 41 | /// Look up a dynamic stack slot entity. |
| 42 | pub fn contains_dss(&self, dss: DynamicStackSlot) -> bool { |
no test coverage detected