(&mut self, new_use: &Use)
| 525 | |
| 526 | impl LoadMetadata { |
| 527 | fn add_use(&mut self, new_use: &Use) { |
| 528 | self.min_bit = self.min_bit.min(new_use.min_bit); |
| 529 | self.max_bit = self.max_bit.max(new_use.max_bit); |
| 530 | } |
| 531 | |
| 532 | /// Return the amount of bytes required for the load operation (Note: we do not allow the |
| 533 | /// starting address of the load to be adjusted, and require the size to be a power of 2). |