MCPcopy Create free account
hub / github.com/IntegralPilot/rustc_codegen_jvm / bool_zero_compare_target

Function bool_zero_compare_target

src/lower2/optimise2.rs:1672–1678  ·  view source on GitHub ↗
(instruction: &Instruction)

Source from the content-addressed store, hash-verified

1670 active.push(Reverse((range.last, candidate, range.width)));
1671 }
1672
1673 slot_map
1674}
1675
1676fn set_slot_occupancy(occupied: &mut Vec<bool>, slot: u16, width: u16, value: bool) {
1677 let start = usize::from(slot);
1678 let end = start + usize::from(width);
1679 if end > occupied.len() {
1680 occupied.resize(end, false);
1681 }

Calls

no outgoing calls

Tested by

no test coverage detected