diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2017-12-13 16:52:57 -0600 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2017-12-29 12:43:40 -0800 |
commit | 1df3caa946e08b387511dfba3a37d78910e51796 (patch) | |
tree | 2ece3af901a3571120c0f2747ef6d213e45a2049 /tcg/tcg.h | |
parent | 923ed1750186591b04d7d61399f6d68b4e0608f2 (diff) | |
download | qemu-1df3caa946e08b387511dfba3a37d78910e51796.zip qemu-1df3caa946e08b387511dfba3a37d78910e51796.tar.gz qemu-1df3caa946e08b387511dfba3a37d78910e51796.tar.bz2 |
tcg: Allow 6 arguments to TCG helpers
We already handle this in the backends, and the lifetime datum
for the TCGOp is already large enough.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/tcg.h')
-rw-r--r-- | tcg/tcg.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ #else #define MAX_OPC_PARAM_PER_ARG 1 #endif -#define MAX_OPC_PARAM_IARGS 5 +#define MAX_OPC_PARAM_IARGS 6 #define MAX_OPC_PARAM_OARGS 1 #define MAX_OPC_PARAM_ARGS (MAX_OPC_PARAM_IARGS + MAX_OPC_PARAM_OARGS) |