From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45964) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YZCsO-0000kr-0X for qemu-devel@nongnu.org; Sat, 21 Mar 2015 02:27:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YZCsI-0002wC-Kb for qemu-devel@nongnu.org; Sat, 21 Mar 2015 02:27:15 -0400 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:32847) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YZCsI-0002w2-Gr for qemu-devel@nongnu.org; Sat, 21 Mar 2015 02:27:10 -0400 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id 0B13820975 for ; Sat, 21 Mar 2015 02:27:08 -0400 (EDT) From: "Emilio G. Cota" Date: Sat, 21 Mar 2015 02:27:12 -0400 Message-Id: <1426919232-20813-1-git-send-email-cota@braap.org> Subject: [Qemu-devel] [PATCH] tcg: pack TCGTemp to reduce size by 8 bytes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, Richard Henderson This brings down the size of the struct from 56 to 48 bytes. Signed-off-by: Emilio G. Cota --- tcg/tcg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcg/tcg.h b/tcg/tcg.h index add7f75..3276924 100644 --- a/tcg/tcg.h +++ b/tcg/tcg.h @@ -429,8 +429,8 @@ typedef struct TCGTemp { int val_type; int reg; tcg_target_long val; - int mem_reg; intptr_t mem_offset; + int mem_reg; unsigned int fixed_reg:1; unsigned int mem_coherent:1; unsigned int mem_allocated:1; -- 1.9.1