From a638ebe0ce553e03b3250d4e54e44ccd82e6c4f3 Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Fri, 28 Apr 2023 08:30:02 -0700 Subject: [PATCH] fix --- evm/src/cpu/kernel/asm/core/precompiles/blake2_f.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evm/src/cpu/kernel/asm/core/precompiles/blake2_f.asm b/evm/src/cpu/kernel/asm/core/precompiles/blake2_f.asm index 8e81def8..d5971a81 100644 --- a/evm/src/cpu/kernel/asm/core/precompiles/blake2_f.asm +++ b/evm/src/cpu/kernel/asm/core/precompiles/blake2_f.asm @@ -30,7 +30,7 @@ global precompile_blake2_f: // stack: flag, flag_addr, blake2_f_contd, kexit_info DUP1 // stack: flag, flag, flag_addr, blake2_f_contd, kexit_info - gt_const(1) %jumpi(fault_exception) // Check flag < 2 (flag = 0 or flag = 1) + %gt_const(1) %jumpi(fault_exception) // Check flag < 2 (flag = 0 or flag = 1) // stack: flag, flag_addr, blake2_f_contd, kexit_info SWAP1 // stack: flag_addr, flag, blake2_f_contd, kexit_info