diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-20 22:49:12 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-20 22:49:12 +0800 |
commit | 9845029a7535672746139084138f3e894e604e44 (patch) | |
tree | 3503d094eac24e63108938a37008a2eab3b3528d /vm/vm_jit.go | |
parent | 375cc67ba6dbc57e69aa594a6ac26ebc9b3a713a (diff) | |
download | dexon-9845029a7535672746139084138f3e894e604e44.tar dexon-9845029a7535672746139084138f3e894e604e44.tar.gz dexon-9845029a7535672746139084138f3e894e604e44.tar.bz2 dexon-9845029a7535672746139084138f3e894e604e44.tar.lz dexon-9845029a7535672746139084138f3e894e604e44.tar.xz dexon-9845029a7535672746139084138f3e894e604e44.tar.zst dexon-9845029a7535672746139084138f3e894e604e44.zip |
StdVm by default
Diffstat (limited to 'vm/vm_jit.go')
-rw-r--r-- | vm/vm_jit.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/vm_jit.go b/vm/vm_jit.go index 1cb9652af..0882bcf0c 100644 --- a/vm/vm_jit.go +++ b/vm/vm_jit.go @@ -8,7 +8,7 @@ type JitVm struct { } func NewJitVm(env Environment) *JitVm { - backupVm := NewVm(env) + backupVm := New(env) return &JitVm{env: env, backup: backupVm} } |