From: Richard Henderson Date: Wed, 21 Aug 2013 00:12:38 +0000 (-0700) Subject: tcg: Use appropriate types in tcg_reg_alloc_call X-Git-Tag: qemu-xen-4.5.0-rc1~500^2~11 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=d3452f1f40956e50142d32afbc021c53026a1770;p=qemu-upstream-4.5-testing.git tcg: Use appropriate types in tcg_reg_alloc_call Reviewed-by: Aurelien Jarno Signed-off-by: Richard Henderson --- diff --git a/tcg/tcg.c b/tcg/tcg.c index 7ba92086d..99f3b2ca8 100644 --- a/tcg/tcg.c +++ b/tcg/tcg.c @@ -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;