From a30cb22324a055f495cf8d0d7da6418dbe71af34 Mon Sep 17 00:00:00 2001 From: Kevaundray Wedderburn Date: Fri, 3 Apr 2026 09:17:58 +0100 Subject: [PATCH] won't -> can't --- core/vm/interpreter_experimental.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/vm/interpreter_experimental.go b/core/vm/interpreter_experimental.go index 6ec97782d5..0bc76583d1 100644 --- a/core/vm/interpreter_experimental.go +++ b/core/vm/interpreter_experimental.go @@ -29,12 +29,12 @@ import ( // Currently there are two optimizations over the standard loop: // // 1. Switch dispatch: the standard interpreter calls operation.execute() via a function -// pointer table. This is an indirect call that the CPU can't predict and the compiler won't +// pointer table. This is an indirect call that the CPU can't predict and the compiler can't // inline. // runExperimental replaces this with a switch statement for common // opcodes, with the opcode logic inlined in each case. The remaining opcodes // fall through to the default case which uses the standard jump table. -// TODO: Eventualy, we can migrate over everything. +// TODO: Eventually, we can migrate over everything. // // 2. Gas accumulation: the standard interpreter checks and writes contract.Gas (on the heap) // on every opcode.