We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf441a9 commit 06850ffCopy full SHA for 06850ff
src/fuzzing/func.rs
@@ -189,7 +189,7 @@ impl FuncBuilder {
189
190
fn compute_doms(&mut self) {
191
let f = &self.f;
192
- postorder::calculate(
+ let _ = postorder::calculate(
193
self.f.blocks.len(),
194
Block::new(0),
195
&mut vec![],
src/lib.rs
@@ -912,7 +912,7 @@ impl Operand {
912
}
913
914
/// If this operand is for a fixed non-allocatable register (see
915
- /// [`OperandConstraint::FixedReg`]), then returns the physical register that it will
+ /// [`Operand::fixed_nonallocatable`]), then returns the physical register that it will
916
/// be assigned to.
917
#[inline(always)]
918
pub fn as_fixed_nonallocatable(self) -> Option<PReg> {
0 commit comments