Skip to content

Commit b5fa590

Browse files
committed
Fix dis output
1 parent a7f7676 commit b5fa590

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/compiler-core/src/bytecode/instruction.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1105,7 +1105,7 @@ impl InstructionMetadata for Instruction {
11051105
Self::ContainsOp { invert } => w!(CONTAINS_OP, ?invert),
11061106
Self::ConvertValue { oparg } => {
11071107
let oparg = oparg.get(arg);
1108-
write!(f, "{:pad$}{} ({})", "CONVERT_VALUE", oparg.as_u8(), oparg)
1108+
write!(f, "{:pad$} {} ({})", "CONVERT_VALUE", oparg.as_u8(), oparg)
11091109
}
11101110
Self::Copy { i } => w!(COPY, i),
11111111
Self::CopyFreeVars { n } => w!(COPY_FREE_VARS, n),

0 commit comments

Comments
 (0)