ensure MAX_JIT_CACHE is defined (as zero) even if we don't use JIT
This commit is contained in:
parent
28fc077517
commit
5267827a5f
1 changed files with 2 additions and 1 deletions
|
@ -38,7 +38,6 @@ struct cputbl {
|
|||
};
|
||||
|
||||
#ifdef JIT
|
||||
#define MIN_JIT_CACHE 128
|
||||
#define MAX_JIT_CACHE 16384
|
||||
typedef uae_u32 REGPARAM3 compop_func (uae_u32) REGPARAM;
|
||||
|
||||
|
@ -54,6 +53,8 @@ struct comptbl {
|
|||
uae_u32 specific;
|
||||
uae_u32 opcode;
|
||||
};
|
||||
#else
|
||||
#define MAX_JIT_CACHE 0
|
||||
#endif
|
||||
|
||||
extern uae_u32 REGPARAM3 op_illg (uae_u32) REGPARAM;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue