diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2009-09-22 23:31:04 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2009-09-23 09:25:03 +0200 |
commit | 6db73509bce1a241040039dd5466977a7356a913 (patch) | |
tree | 54f7c771c8ac64207c85ba8433a59fe0c607d7ea /exec-all.h | |
parent | exec-all.h: increase MAX_OP_PER_INSTR to 96 from 64 (diff) | |
download | qemu-kvm-6db73509bce1a241040039dd5466977a7356a913.tar.gz qemu-kvm-6db73509bce1a241040039dd5466977a7356a913.tar.bz2 qemu-kvm-6db73509bce1a241040039dd5466977a7356a913.zip |
exec-all.h: increase OPC_BUF_SIZE
Increase OPC_BUF_SIZE to compensate the MAX_OP_PER_INSTR's increase.
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'exec-all.h')
-rw-r--r-- | exec-all.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exec-all.h b/exec-all.h index ef783d8d1..93e0b5ddf 100644 --- a/exec-all.h +++ b/exec-all.h @@ -37,7 +37,7 @@ typedef struct TranslationBlock TranslationBlock; #define MAX_OP_PER_INSTR 96 /* A Call op needs up to 6 + 2N parameters (N = number of arguments). */ #define MAX_OPC_PARAM 10 -#define OPC_BUF_SIZE 512 +#define OPC_BUF_SIZE 640 #define OPC_MAX_SIZE (OPC_BUF_SIZE - MAX_OP_PER_INSTR) /* Maximum size a TCG op can expand to. This is complicated because a |