aboutsummaryrefslogtreecommitdiffstats
path: root/vm/vm_jit_fake.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-23 23:59:09 +0800
committerobscuren <geffobscura@gmail.com>2015-03-23 23:59:09 +0800
commit0330077d76b48934ab024a309000f83c78047d8a (patch)
tree2a3ffbcd5bd941b30ed28d0eb5c30553a25324e0 /vm/vm_jit_fake.go
parentd7eaa97a297151637af090ecb05bbd6d260d90b8 (diff)
downloaddexon-0330077d76b48934ab024a309000f83c78047d8a.tar
dexon-0330077d76b48934ab024a309000f83c78047d8a.tar.gz
dexon-0330077d76b48934ab024a309000f83c78047d8a.tar.bz2
dexon-0330077d76b48934ab024a309000f83c78047d8a.tar.lz
dexon-0330077d76b48934ab024a309000f83c78047d8a.tar.xz
dexon-0330077d76b48934ab024a309000f83c78047d8a.tar.zst
dexon-0330077d76b48934ab024a309000f83c78047d8a.zip
moved state and vm to core
Diffstat (limited to 'vm/vm_jit_fake.go')
-rw-r--r--vm/vm_jit_fake.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/vm/vm_jit_fake.go b/vm/vm_jit_fake.go
deleted file mode 100644
index d6b5be45b..000000000
--- a/vm/vm_jit_fake.go
+++ /dev/null
@@ -1,10 +0,0 @@
-// +build !evmjit
-
-package vm
-
-import "fmt"
-
-func NewJitVm(env Environment) VirtualMachine {
- fmt.Printf("Warning! EVM JIT not enabled.\n")
- return New(env)
-}