From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39961) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VGX0h-0002tB-5a for qemu-devel@nongnu.org; Mon, 02 Sep 2013 12:29:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VGX0c-0005me-C3 for qemu-devel@nongnu.org; Mon, 02 Sep 2013 12:29:51 -0400 Received: from mail-pb0-x231.google.com ([2607:f8b0:400e:c01::231]:49225) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VGX0c-0005mQ-5c for qemu-devel@nongnu.org; Mon, 02 Sep 2013 12:29:46 -0400 Received: by mail-pb0-f49.google.com with SMTP id xb4so4900238pbc.36 for ; Mon, 02 Sep 2013 09:29:45 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Mon, 2 Sep 2013 09:29:03 -0700 Message-Id: <1378139354-28602-19-git-send-email-rth@twiddle.net> In-Reply-To: <1378139354-28602-1-git-send-email-rth@twiddle.net> References: <1378139354-28602-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PULL 18/29] tcg: Use appropriate types in tcg_reg_alloc_call List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aurelien@aurel32.net, anthony@codemonkey.ws Reviewed-by: Aurelien Jarno Signed-off-by: Richard Henderson --- tcg/tcg.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tcg/tcg.c b/tcg/tcg.c index 7ba9208..99f3b2c 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; -- 1.8.1.4