From 82ef7d0754f211e273826ef09088567e3e5442a3 Mon Sep 17 00:00:00 2001 From: Stefanos Kornilios Mitsis Poiitidis Date: Tue, 21 Jul 2015 15:42:10 +0200 Subject: [PATCH] jitx64: 16KBs of emit space are guaranteed, not 64 --- core/rec-x64/rec_x64.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/rec-x64/rec_x64.cpp b/core/rec-x64/rec_x64.cpp index 7045c2fca..1418c626e 100644 --- a/core/rec-x64/rec_x64.cpp +++ b/core/rec-x64/rec_x64.cpp @@ -379,7 +379,7 @@ BlockCompiler* compiler; void ngen_Compile(RuntimeBlockInfo* block, bool force_checks, bool reset, bool staging, bool optimise) { - verify(emit_FreeSpace() >= 64 * 1024); + verify(emit_FreeSpace() >= 16 * 1024); compiler = new BlockCompiler();