Minor style changes.
This commit is contained in:
parent
04e4a14edc
commit
3dd4fda614
1 changed files with 3 additions and 3 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#if defined __APPLE__ && defined __aarch64__
|
#if defined(__APPLE__) && defined(__aarch64__)
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
#endif
|
#endif
|
||||||
#include "ibm.h"
|
#include "ibm.h"
|
||||||
|
|
@ -413,7 +413,7 @@ static inline void exec_recompiler(void)
|
||||||
|
|
||||||
cpu_new_blocks++;
|
cpu_new_blocks++;
|
||||||
|
|
||||||
#if defined __APPLE__ && defined __aarch64__
|
#if defined(__APPLE__) && defined(__aarch64__)
|
||||||
pthread_jit_write_protect_np(0);
|
pthread_jit_write_protect_np(0);
|
||||||
#endif
|
#endif
|
||||||
codegen_block_start_recompile(block);
|
codegen_block_start_recompile(block);
|
||||||
|
|
@ -487,7 +487,7 @@ static inline void exec_recompiler(void)
|
||||||
codegen_reset();
|
codegen_reset();
|
||||||
|
|
||||||
codegen_in_recompile = 0;
|
codegen_in_recompile = 0;
|
||||||
#if defined __APPLE__ && defined __aarch64__
|
#if defined(__APPLE__) && defined(__aarch64__)
|
||||||
pthread_jit_write_protect_np(1);
|
pthread_jit_write_protect_np(1);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue