From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54436) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UypLm-0003Jw-R0 for qemu-devel@nongnu.org; Mon, 15 Jul 2013 16:26:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UypLk-0000AI-JV for qemu-devel@nongnu.org; Mon, 15 Jul 2013 16:26:26 -0400 Received: from mail-qa0-x231.google.com ([2607:f8b0:400d:c00::231]:37657) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UypLk-0000A9-Cq for qemu-devel@nongnu.org; Mon, 15 Jul 2013 16:26:24 -0400 Received: by mail-qa0-f49.google.com with SMTP id hu16so1864020qab.1 for ; Mon, 15 Jul 2013 13:26:24 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Mon, 15 Jul 2013 13:25:44 -0700 Message-Id: <1373919944-8521-4-git-send-email-rth@twiddle.net> In-Reply-To: <1373919944-8521-1-git-send-email-rth@twiddle.net> References: <1373919944-8521-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PULL 3/3] tcg: Remove temp_buf List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com All targets have been converted to allocating space for temporaries on the stack. No need to allocate space within the CPU_COMMON block. Signed-off-by: Richard Henderson --- include/exec/cpu-defs.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/exec/cpu-defs.h b/include/exec/cpu-defs.h index 39094b3..5321171 100644 --- a/include/exec/cpu-defs.h +++ b/include/exec/cpu-defs.h @@ -154,8 +154,6 @@ typedef struct CPUWatchpoint { memory was accessed */ \ CPU_COMMON_TLB \ struct TranslationBlock *tb_jmp_cache[TB_JMP_CACHE_SIZE]; \ - /* buffer for temporaries in the code generator */ \ - long temp_buf[CPU_TEMP_BUF_NLONGS]; \ \ int64_t icount_extra; /* Instructions until next timer event. */ \ /* Number of cycles left, with interrupt flag in high bit. \ -- 1.8.3.1