aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/instructions.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <geffobscura@gmail.com>2015-10-07 05:39:43 +0800
committerJeffrey Wilcke <geffobscura@gmail.com>2015-10-17 04:30:42 +0800
commitb19627804400901ba003f6e401366cb7d3c4290f (patch)
tree0fbfa3f118df85737b72764b0765a22cbf4c7b2a /core/vm/instructions.go
parent9d61d78de6ad20822b2b48d6c4e3779369ea7331 (diff)
downloadgo-tangerine-b19627804400901ba003f6e401366cb7d3c4290f.tar.gz
go-tangerine-b19627804400901ba003f6e401366cb7d3c4290f.tar.zst
go-tangerine-b19627804400901ba003f6e401366cb7d3c4290f.zip
core/vm: added JIT segmenting / optimisations
* multi-push segments * static jumps segments
Diffstat (limited to 'core/vm/instructions.go')
-rw-r--r--core/vm/instructions.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/instructions.go b/core/vm/instructions.go
index 5dcab6e08..2e868521e 100644
--- a/core/vm/instructions.go
+++ b/core/vm/instructions.go
@@ -73,7 +73,7 @@ func (instr instruction) do(program *Program, pc *uint64, env Environment, contr
// Resize the memory calculated previously
memory.Resize(newMemSize.Uint64())
- // These opcodes return an argument and are thefor handled
+ // These opcodes return an argument and are therefor handled
// differently from the rest of the opcodes
switch instr.op {
case JUMP: