From 08e62ac8bd5c8b8b74f5273f431b3a9b8d4b405f Mon Sep 17 00:00:00 2001 From: gambas Date: Tue, 27 Nov 2018 03:02:23 +0100 Subject: [PATCH] Use the unsafe flag for JIT-compiled scripts. [BENCHMARKS] * NEW: Use the unsafe flag for JIT-compiled scripts. --- benchmark/benchmark.gbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/benchmark.gbs b/benchmark/benchmark.gbs index ff39a0263..e52a7f20c 100755 --- a/benchmark/benchmark.gbs +++ b/benchmark/benchmark.gbs @@ -80,7 +80,7 @@ For Each sBenchmark In Dir(Application.Dir, "*.gbs") aResult.Add(cResult) cResult!name = sBenchmark - cResult!gambasjit = RunScript(sBenchmark & ".gbs", "gbs3 -f -c", bGambasOnly) + cResult!gambasjit = RunScript(sBenchmark & ".gbs", "gbs3 -f -U -c", bGambasOnly) cResult!gambasjitwct = cResult!gambasjit - $fCompileTime cResult!gambas = RunScript(sBenchmark & ".gbs", "gbs3 -c", bGambasOnly) If Not bGambasOnly Then cResult!python = RunScript(sBenchmark & ".py", "python", bGambasOnly)