Use the unsafe flag for JIT-compiled scripts.

[BENCHMARKS]
* NEW: Use the unsafe flag for JIT-compiled scripts.
This commit is contained in:
gambas 2018-11-27 03:02:23 +01:00
parent 4ee175d022
commit 08e62ac8bd

View file

@ -80,7 +80,7 @@ For Each sBenchmark In Dir(Application.Dir, "*.gbs")
aResult.Add(cResult) aResult.Add(cResult)
cResult!name = sBenchmark 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!gambasjitwct = cResult!gambasjit - $fCompileTime
cResult!gambas = RunScript(sBenchmark & ".gbs", "gbs3 -c", bGambasOnly) cResult!gambas = RunScript(sBenchmark & ".gbs", "gbs3 -c", bGambasOnly)
If Not bGambasOnly Then cResult!python = RunScript(sBenchmark & ".py", "python", bGambasOnly) If Not bGambasOnly Then cResult!python = RunScript(sBenchmark & ".py", "python", bGambasOnly)