aboutsummaryrefslogtreecommitdiff
path: root/include/exec/helper-proto.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 /include/exec/helper-proto.h
parent923ed1750186591b04d7d61399f6d68b4e0608f2 (diff)
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 'include/exec/helper-proto.h')
-rw-r--r--include/exec/helper-proto.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/exec/helper-proto.h b/include/exec/helper-proto.h
index 954bef85ce..74943edb13 100644
--- a/include/exec/helper-proto.h
+++ b/include/exec/helper-proto.h
@@ -26,6 +26,10 @@ dh_ctype(ret) HELPER(name) (dh_ctype(t1), dh_ctype(t2), dh_ctype(t3), \
dh_ctype(ret) HELPER(name) (dh_ctype(t1), dh_ctype(t2), dh_ctype(t3), \
dh_ctype(t4), dh_ctype(t5));
+#define DEF_HELPER_FLAGS_6(name, flags, ret, t1, t2, t3, t4, t5, t6) \
+dh_ctype(ret) HELPER(name) (dh_ctype(t1), dh_ctype(t2), dh_ctype(t3), \
+ dh_ctype(t4), dh_ctype(t5), dh_ctype(t6));
+
#include "helper.h"
#include "trace/generated-helpers.h"
#include "tcg-runtime.h"
@@ -36,5 +40,6 @@ dh_ctype(ret) HELPER(name) (dh_ctype(t1), dh_ctype(t2), dh_ctype(t3), \
#undef DEF_HELPER_FLAGS_3
#undef DEF_HELPER_FLAGS_4
#undef DEF_HELPER_FLAGS_5
+#undef DEF_HELPER_FLAGS_6
#endif /* HELPER_PROTO_H */