From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37111) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V2neQ-0000AJ-OG for qemu-devel@nongnu.org; Fri, 26 Jul 2013 15:26:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V2neN-0005hV-Bv for qemu-devel@nongnu.org; Fri, 26 Jul 2013 15:26:06 -0400 Received: from mail-pa0-x22d.google.com ([2607:f8b0:400e:c03::22d]:41756) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V2neN-0005hO-53 for qemu-devel@nongnu.org; Fri, 26 Jul 2013 15:26:03 -0400 Received: by mail-pa0-f45.google.com with SMTP id bg4so3598824pad.4 for ; Fri, 26 Jul 2013 12:26:02 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Fri, 26 Jul 2013 09:25:42 -1000 Message-Id: <1374866742-27515-4-git-send-email-rth@twiddle.net> In-Reply-To: <1374866742-27515-1-git-send-email-rth@twiddle.net> References: <1374866742-27515-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PULL v2 for-1.6 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 b5b93db..a5c028c 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