diff options
| author | Richard Henderson | 2014-04-08 17:53:28 +0200 |
|---|---|---|
| committer | Richard Henderson | 2014-05-28 18:33:55 +0200 |
| commit | 011209e19f0a4723e3dbca0aa68d2917b7938315 (patch) | |
| tree | 28e4c4886e01de0a58b12751e8ab3a68b0e0c5dc /include/exec/helper-head.h | |
| parent | tcg: Remove sizemask and flags arguments to tcg_gen_callN (diff) | |
| download | qemu-011209e19f0a4723e3dbca0aa68d2917b7938315.tar.gz qemu-011209e19f0a4723e3dbca0aa68d2917b7938315.tar.xz qemu-011209e19f0a4723e3dbca0aa68d2917b7938315.zip | |
tcg: Move size effects out of dh_arg
Tidying the initialization of the args arrays at the same time.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'include/exec/helper-head.h')
| -rw-r--r-- | include/exec/helper-head.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/exec/helper-head.h b/include/exec/helper-head.h index 4c541abbcc..b009ccb11a 100644 --- a/include/exec/helper-head.h +++ b/include/exec/helper-head.h @@ -112,7 +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))) + glue(GET_TCGV_, dh_alias(t))(glue(arg, n)) #define dh_arg_decl(t, n) glue(TCGv_, dh_alias(t)) glue(arg, n) |
