Merge pull request #1320 from topos-protocol/fix-combine-keccak-jumpdest

Fix merging of jumpdest and keccak_general.
This commit is contained in:
Robin Salen 2023-11-01 11:12:06 -04:00 committed by GitHub
commit 1e8ed78f5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -23,7 +23,7 @@ pub struct OpsColumnsView<T: Copy> {
/// Combines SHL and SHR flags.
pub shift: T,
/// Combines JUMPDEST and KECCAK_GENERAL flags.
pub jumpdest_keccak_general: T, // Combines JUMPDEST and KECCAK_GENERAL flags.
pub jumpdest_keccak_general: T,
/// Flag for PROVER_INPUT.
pub prover_input: T,
/// Combines JUMP and JUMPI flags.

View File

@ -23,11 +23,10 @@ const KEEPS_CONTEXT: OpsColumnsView<bool> = OpsColumnsView {
logic_op: true,
not_pop: true,
shift: true,
keccak_general: true,
jumpdest_keccak_general: true,
prover_input: true,
jumps: true,
pc_push0: true,
jumpdest: true,
push: true,
dup_swap: true,
context_op: false,