Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Commit

Permalink
Fix merging of jumpdest and keccak_general.
Browse files Browse the repository at this point in the history
  • Loading branch information
LindaGuiga committed Nov 1, 2023
1 parent 4136207 commit 85b38be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion evm/src/cpu/columns/ops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
3 changes: 1 addition & 2 deletions evm/src/cpu/contextops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 85b38be

Please sign in to comment.