aboutsummaryrefslogtreecommitdiff
path: root/tcg/tcg.h
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2017-12-13 16:52:57 -0600
committerRichard Henderson <richard.henderson@linaro.org>2017-12-29 12:43:40 -0800
commit1df3caa946e08b387511dfba3a37d78910e51796 (patch)
tree2ece3af901a3571120c0f2747ef6d213e45a2049 /tcg/tcg.h
parent923ed1750186591b04d7d61399f6d68b4e0608f2 (diff)
downloadqemu-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/tcg.h b/tcg/tcg.h
index 8c45f7e..2ce497c 100644
--- a/tcg/tcg.h
+++ b/tcg/tcg.h
@@ -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)