summaryrefslogtreecommitdiffstats
path: root/include/exec/helper-head.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2014-04-08 08:39:43 -0700
committerRichard Henderson <rth@twiddle.net>2014-05-28 09:33:55 -0700
commitbbb8a1b45574d4e9d06d5753090ccadef2347e38 (patch)
tree2be3bd8abbe573ea2effbff9b0428eeae30ed9c2 /include/exec/helper-head.h
parentafb49896fa4422011b5199ea92f5749039046f27 (diff)
downloadhqemu-bbb8a1b45574d4e9d06d5753090ccadef2347e38.zip
hqemu-bbb8a1b45574d4e9d06d5753090ccadef2347e38.tar.gz
tcg: Remove sizemask and flags arguments to tcg_gen_callN
Take them from the TCGHelperInfo struct instead. Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'include/exec/helper-head.h')
-rw-r--r--include/exec/helper-head.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/exec/helper-head.h b/include/exec/helper-head.h
index 253e4d5..4c541ab 100644
--- a/include/exec/helper-head.h
+++ b/include/exec/helper-head.h
@@ -112,8 +112,7 @@
((dh_is_64bit(t) << (n*2)) | (dh_is_signed(t) << (n*2+1)))
#define dh_arg(t, n) \
- args[n - 1] = glue(GET_TCGV_, dh_alias(t))(glue(arg, n)); \
- sizemask |= dh_sizemask(t, n)
+ (args[n - 1] = glue(GET_TCGV_, dh_alias(t))(glue(arg, n)))
#define dh_arg_decl(t, n) glue(TCGv_, dh_alias(t)) glue(arg, n)
OpenPOWER on IntegriCloud