From f1ff014bcadcbbf8769a25f3da47b6301e1a847f Mon Sep 17 00:00:00 2001 From: tevador Date: Fri, 30 Aug 2019 11:29:09 +0200 Subject: [PATCH] Fix JIT fallback --- src/jit_compiler_a64.hpp | 3 +++ src/jit_compiler_fallback.hpp | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/jit_compiler_a64.hpp b/src/jit_compiler_a64.hpp index 58aa25c..5a075bf 100644 --- a/src/jit_compiler_a64.hpp +++ b/src/jit_compiler_a64.hpp @@ -69,5 +69,8 @@ namespace randomx { size_t getCodeSize() { return 0; } + void enableWriting() {} + void enableExecution() {} + void enableAll() {} }; } \ No newline at end of file diff --git a/src/jit_compiler_fallback.hpp b/src/jit_compiler_fallback.hpp index 8103a63..56ccb8c 100644 --- a/src/jit_compiler_fallback.hpp +++ b/src/jit_compiler_fallback.hpp @@ -69,5 +69,8 @@ namespace randomx { size_t getCodeSize() { return 0; } + void enableWriting() {} + void enableExecution() {} + void enableAll() {} }; } \ No newline at end of file