From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EEQ6w-0007Pq-21 for qemu-devel@nongnu.org; Sun, 11 Sep 2005 07:35:02 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EEQ5a-00076C-H3 for qemu-devel@nongnu.org; Sun, 11 Sep 2005 07:33:43 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EEQ5a-0006vf-57 for qemu-devel@nongnu.org; Sun, 11 Sep 2005 07:33:38 -0400 Received: from [65.74.133.11] (helo=mail.codesourcery.com) by monty-python.gnu.org with esmtp (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA:24) (Exim 4.34) id 1EEQ5x-0005oP-Hy for qemu-devel@nongnu.org; Sun, 11 Sep 2005 07:34:01 -0400 From: Paul Brook Date: Sun, 11 Sep 2005 12:33:34 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200509111233.35135.paul@codesourcery.com> Subject: [Qemu-devel] [patch] Remove JUMP_TB Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org With my previous patches the JUMP_TB macro is now redundant. Patch below removes it. Paul iIndex: exec-all.h =================================================================== RCS file: /cvsroot/qemu/qemu/exec-all.h,v retrieving revision 1.38 diff -u -p -r1.38 exec-all.h --- exec-all.h 4 Sep 2005 16:54:47 -0000 1.38 +++ exec-all.h 11 Sep 2005 11:30:58 -0000 @@ -365,15 +365,6 @@ dummy_label ## n: ;\ #endif -/* XXX: will be suppressed */ -#define JUMP_TB(opname, tbparam, n, eip)\ -do {\ - GOTO_TB(opname, tbparam, n);\ - T0 = (long)(tbparam) + (n);\ - EIP = (int32_t)eip;\ - EXIT_TB();\ -} while (0) - extern CPUWriteMemoryFunc *io_mem_write[IO_MEM_NB_ENTRIES][4]; extern CPUReadMemoryFunc *io_mem_read[IO_MEM_NB_ENTRIES][4]; extern void *io_mem_opaque[IO_MEM_NB_ENTRIES];