mirror of
https://github.com/86Box/86Box.git
synced 2025-01-22 09:11:50 -05:00
Improved the Linux new dynamic recompiler freeze workaround per patch by Dax.
This commit is contained in:
parent
48b3bbb797
commit
a94a5bb0b5
1 changed files with 3 additions and 3 deletions
|
@ -386,10 +386,10 @@ block_ended:
|
||||||
cpu_end_block_after_ins = 0;
|
cpu_end_block_after_ins = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(_WIN32) || defined(__APPLE__)
|
#if defined(__linux__) && !defined(__clang__) && defined(USE_NEW_DYNAREC)
|
||||||
static __inline void
|
static inline void __attribute__((optimize("O2")))
|
||||||
#else
|
#else
|
||||||
static void __attribute__((noinline))
|
static __inline void
|
||||||
#endif
|
#endif
|
||||||
exec386_dynarec_dyn(void)
|
exec386_dynarec_dyn(void)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue