Skip to content

Commit 06850ff

Browse files
committed
PR and pipeline feedback.
1 parent cf441a9 commit 06850ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/fuzzing/func.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ impl FuncBuilder {
189189

190190
fn compute_doms(&mut self) {
191191
let f = &self.f;
192-
postorder::calculate(
192+
let _ = postorder::calculate(
193193
self.f.blocks.len(),
194194
Block::new(0),
195195
&mut vec![],

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -912,7 +912,7 @@ impl Operand {
912912
}
913913

914914
/// If this operand is for a fixed non-allocatable register (see
915-
/// [`OperandConstraint::FixedReg`]), then returns the physical register that it will
915+
/// [`Operand::fixed_nonallocatable`]), then returns the physical register that it will
916916
/// be assigned to.
917917
#[inline(always)]
918918
pub fn as_fixed_nonallocatable(self) -> Option<PReg> {

0 commit comments

Comments
 (0)