Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Auto-format: cargo fmt --all
  • Loading branch information
github-actions[bot] committed Jan 23, 2026
commit 41084baa90693fce7163c1bf0eb72e212cf431c2
6 changes: 1 addition & 5 deletions crates/compiler-core/src/bytecode/instruction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1179,11 +1179,7 @@ pub trait InstructionMetadata {
level: usize,
) -> fmt::Result;

fn display(
&self,
arg: OpArg,
ctx: &impl InstrDisplayContext,
) -> impl fmt::Display {
fn display(&self, arg: OpArg, ctx: &impl InstrDisplayContext) -> impl fmt::Display {
fmt::from_fn(move |f| self.fmt_dis(arg, f, ctx, false, 0, 0))
}
}
Expand Down