Resolve a reference to a stack slot.
(&self, ss: StackSlot, loc: Location)
| 258 | |
| 259 | // Resolve a reference to a stack slot. |
| 260 | fn check_ss(&self, ss: StackSlot, loc: Location) -> ParseResult<()> { |
| 261 | if !self.map.contains_ss(ss) { |
| 262 | err!(loc, "undefined stack slot {}", ss) |
| 263 | } else { |
| 264 | Ok(()) |
| 265 | } |
| 266 | } |
| 267 | |
| 268 | // Allocate a new stack slot. |
| 269 | fn add_dss( |
no test coverage detected