From: Richard Henderson Date: Tue, 21 Jan 2014 16:36:38 +0000 (-0800) Subject: TCG: Fix 32-bit host allocation typo X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f6aa2f7dee920f6f06fefe122cf2a58cabe3cac0;p=qemu.git TCG: Fix 32-bit host allocation typo The second half register of a 64-bit temp on a 32-bit host was allocated with the wrong base_type. The base_type of the second half register is never checked, but for consistency it should be the same as the first half. Signed-off-by: Richard Henderson --- diff --git a/tcg/tcg.c b/tcg/tcg.c index acd02b99b6..ffc851e0c6 100644 --- a/tcg/tcg.c +++ b/tcg/tcg.c @@ -526,7 +526,7 @@ static inline int tcg_temp_new_internal(TCGType type, int temp_local) ts->temp_local = temp_local; ts->name = NULL; ts++; - ts->base_type = TCG_TYPE_I32; + ts->base_type = type; ts->type = TCG_TYPE_I32; ts->temp_allocated = 1; ts->temp_local = temp_local;