diff options
author | Richard Henderson <rth@twiddle.net> | 2013-08-20 17:12:38 -0700 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2013-09-02 09:08:30 -0700 |
commit | d3452f1f40956e50142d32afbc021c53026a1770 (patch) | |
tree | 93ab0b4e558816911cf7c5ed7473d9cb9fdf7c9f | |
parent | a05b5b9be0fec96c89e00abaa964be7ce9e661ac (diff) | |
download | qemu-d3452f1f40956e50142d32afbc021c53026a1770.tar.gz qemu-d3452f1f40956e50142d32afbc021c53026a1770.tar.bz2 qemu-d3452f1f40956e50142d32afbc021c53026a1770.zip |
tcg: Use appropriate types in tcg_reg_alloc_call
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Richard Henderson <rth@twiddle.net>
-rw-r--r-- | tcg/tcg.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2070,7 +2070,9 @@ static int tcg_reg_alloc_call(TCGContext *s, const TCGOpDef *def, int nb_iargs, nb_oargs, flags, nb_regs, i, reg, nb_params; TCGArg arg, func_arg; TCGTemp *ts; - tcg_target_long stack_offset, call_stack_size, func_addr; + intptr_t stack_offset; + size_t call_stack_size; + uintptr_t func_addr; int const_func_arg, allocate_args; TCGRegSet allocated_regs; const TCGArgConstraint *arg_ct; |