Skip to content

Commit

Permalink
Fix JIT fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
tevador committed Aug 30, 2019
1 parent d99af8c commit f1ff014
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/jit_compiler_a64.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,8 @@ namespace randomx {
size_t getCodeSize() {
return 0;
}
void enableWriting() {}
void enableExecution() {}
void enableAll() {}
};
}
3 changes: 3 additions & 0 deletions src/jit_compiler_fallback.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,8 @@ namespace randomx {
size_t getCodeSize() {
return 0;
}
void enableWriting() {}
void enableExecution() {}
void enableAll() {}
};
}

0 comments on commit f1ff014

Please sign in to comment.