X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=blobdiff_plain;f=bindings%2Fgo%2Fllvm%2Fexecutionengine_test.go;h=2b6a3caff3df45082394f22bb2e394c9f659647b;hp=03fabc83c6ff49a16cfbdbe1de39436d5c9e375d;hb=73271f08534cf8d90a3b1f18dbf73e6c25279837;hpb=2d3f97d4dea6501bffa69e07c69df860e904877e diff --git a/bindings/go/llvm/executionengine_test.go b/bindings/go/llvm/executionengine_test.go index 03fabc83c6f..2b6a3caff3d 100644 --- a/bindings/go/llvm/executionengine_test.go +++ b/bindings/go/llvm/executionengine_test.go @@ -68,6 +68,9 @@ func TestFactorial(t *testing.T) { options := NewMCJITCompilerOptions() options.SetMCJITOptimizationLevel(2) + options.SetMCJITEnableFastISel(true) + options.SetMCJITNoFramePointerElim(true) + options.SetMCJITCodeModel(CodeModelJITDefault) engine, err := NewMCJITCompiler(mod, options) if err != nil { t.Errorf("Error creating JIT: %s", err)