Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
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
Align pseudoes
  • Loading branch information
ShaharNaveh committed Mar 1, 2026
commit 5c99d269c06d7c1b21cdc3cc878d0606eae77fe0
18 changes: 9 additions & 9 deletions crates/compiler-core/src/bytecode/instruction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1253,16 +1253,16 @@ impl InstructionMetadata for Instruction {
pub enum PseudoInstruction {
// CPython 3.14.2 pseudo instructions (256-266)
AnnotationsPlaceholder = 256,
Jump { target: Arg<Label> } = 257,
JumpIfFalse { target: Arg<Label> } = 258,
JumpIfTrue { target: Arg<Label> } = 259,
JumpNoInterrupt { target: Arg<Label> } = 260,
LoadClosure(Arg<NameIdx>) = 261,
Jump { delta: Arg<Label> } = 257,
JumpIfFalse { delta: Arg<Label> } = 258,
JumpIfTrue { delta: Arg<Label> } = 259,
JumpNoInterrupt { delta: Arg<Label> } = 260,
LoadClosure { i: Arg<NameIdx> } = 261,
PopBlock = 262,
SetupCleanup { target: Arg<Label> } = 263,
SetupFinally { target: Arg<Label> } = 264,
SetupWith { target: Arg<Label> } = 265,
StoreFastMaybeNull(Arg<NameIdx>) = 266,
SetupCleanup { delta: Arg<Label> } = 263,
SetupFinally { delta: Arg<Label> } = 264,
SetupWith { delta: Arg<Label> } = 265,
StoreFastMaybeNull { var_num: Arg<NameIdx> } = 266,
}

const _: () = assert!(mem::size_of::<PseudoInstruction>() == 2);
Expand Down