Get a label for a block. (The first N MachLabels are always reserved for the N blocks in the vcode.)
(bindex: BlockIndex)
| 459 | /// Get a label for a block. (The first N MachLabels are always reserved for |
| 460 | /// the N blocks in the vcode.) |
| 461 | pub fn from_block(bindex: BlockIndex) -> MachLabel { |
| 462 | MachLabel(bindex.index() as u32) |
| 463 | } |
| 464 | |
| 465 | /// Creates a string representing this label, for convenience. |
| 466 | pub fn to_string(&self) -> String { |