diff options
| author | Richard Henderson | 2014-04-08 17:39:43 +0200 |
|---|---|---|
| committer | Richard Henderson | 2014-05-28 18:33:55 +0200 |
| commit | bbb8a1b45574d4e9d06d5753090ccadef2347e38 (patch) | |
| tree | 2be3bd8abbe573ea2effbff9b0428eeae30ed9c2 /include/exec/helper-head.h | |
| parent | tcg: Save flags and computed sizemask in TCGHelperInfo (diff) | |
| download | qemu-bbb8a1b45574d4e9d06d5753090ccadef2347e38.tar.gz qemu-bbb8a1b45574d4e9d06d5753090ccadef2347e38.tar.xz qemu-bbb8a1b45574d4e9d06d5753090ccadef2347e38.zip | |
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.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/exec/helper-head.h b/include/exec/helper-head.h index 253e4d53fd..4c541abbcc 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) |
