mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 18:18:03 +00:00
vdbe: resolve labels for Insn::Once
This commit is contained in:
parent
d0da7307be
commit
09ad6d8f01
1 changed files with 6 additions and 0 deletions
|
@ -363,6 +363,12 @@ impl ProgramBuilder {
|
|||
Insn::Next { pc_if_next, .. } => {
|
||||
resolve(pc_if_next, "Next");
|
||||
}
|
||||
Insn::Once {
|
||||
target_pc_when_reentered,
|
||||
..
|
||||
} => {
|
||||
resolve(target_pc_when_reentered, "Once");
|
||||
}
|
||||
Insn::Prev { pc_if_prev, .. } => {
|
||||
resolve(pc_if_prev, "Prev");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue