From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:53207) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UT6fj-0005jL-Hq for qemu-devel@nongnu.org; Fri, 19 Apr 2013 04:27:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UT6fg-0006Ii-Hw for qemu-devel@nongnu.org; Fri, 19 Apr 2013 04:27:55 -0400 Received: from mail-ee0-f44.google.com ([74.125.83.44]:40182) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UT6fg-0006I8-Bq for qemu-devel@nongnu.org; Fri, 19 Apr 2013 04:27:52 -0400 Received: by mail-ee0-f44.google.com with SMTP id c41so1705258eek.31 for ; Fri, 19 Apr 2013 01:27:51 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Fri, 19 Apr 2013 10:27:46 +0200 Message-Id: <1366360066-3373-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PATCH] tcg: Remove temp_buf List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aurelien@aurel32.net 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 --- This depends on my tcg-arm patch set that's still outstanding. r~ --- 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 d8c64e9..41f5b32 100644 --- a/include/exec/cpu-defs.h +++ b/include/exec/cpu-defs.h @@ -152,8 +152,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.1.4