mirror of
https://github.com/86Box/86Box.git
synced 2025-01-22 09:11:50 -05:00
Dynamic recompiler: Only disable inline if not on Windows or MacOS.
This commit is contained in:
parent
5e0c086d4a
commit
fbafb7507b
1 changed files with 4 additions and 0 deletions
|
@ -386,7 +386,11 @@ block_ended:
|
||||||
cpu_end_block_after_ins = 0;
|
cpu_end_block_after_ins = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined(_WIN32) || defined(__APPLE__)
|
||||||
|
static __inline void
|
||||||
|
#else
|
||||||
static void __attribute__((noinline))
|
static void __attribute__((noinline))
|
||||||
|
#endif
|
||||||
exec386_dynarec_dyn(void)
|
exec386_dynarec_dyn(void)
|
||||||
{
|
{
|
||||||
uint32_t start_pc = 0;
|
uint32_t start_pc = 0;
|
||||||
|
|
Loading…
Reference in a new issue