JitVM: the EVM JIT bridge

This commit is contained in:
Paweł Bylica
2015-01-22 18:00:15 +01:00
parent 4df2e1ef5c
commit d5f38f5690
4 changed files with 375 additions and 18 deletions

10
vm/vm_jit_fake.go Normal file
View File

@ -0,0 +1,10 @@
// +build !evmjit
package vm
import "fmt"
func NewJitVm(env Environment) VirtualMachine {
fmt.Printf("Warning! EVM JIT not enabled.\n")
return New(env)
}