Skip to content

Commit

Permalink
4209 - review feedback addressed
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanmon committed Jan 29, 2024
1 parent 924b409 commit 7126294
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ std::vector<FF> AvmMiniTraceBuilder::return_op(uint32_t ret_offset, uint32_t ret
pos = ret_size;
}
}
pc = UINT32_MAX;
pc = UINT32_MAX; // This ensures that no subsequent opcode will be executed.
return returnMem;
}

Expand All @@ -473,7 +473,7 @@ void AvmMiniTraceBuilder::halt()
.avmMini_sel_halt = FF(1),
});

pc = UINT32_MAX;
pc = UINT32_MAX; // This ensures that no subsequent opcode will be executed.
}

/**
Expand Down

0 comments on commit 7126294

Please sign in to comment.