From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LWD3e-0000xP-AI for qemu-devel@nongnu.org; Sun, 08 Feb 2009 12:03:02 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LWD3d-0000x5-E6 for qemu-devel@nongnu.org; Sun, 08 Feb 2009 12:03:01 -0500 Received: from [199.232.76.173] (port=43731 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LWD3d-0000x1-82 for qemu-devel@nongnu.org; Sun, 08 Feb 2009 12:03:01 -0500 Received: from mtaout01-winn.ispmail.ntl.com ([81.103.221.47]:4159) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LWD3c-0003GL-Lj for qemu-devel@nongnu.org; Sun, 08 Feb 2009 12:03:00 -0500 Received: from aamtaout03-winn.ispmail.ntl.com ([81.103.221.35]) by mtaout01-winn.ispmail.ntl.com (InterMail vM.7.08.04.00 201-2186-134-20080326) with ESMTP id <20090208170259.YSHV2989.mtaout01-winn.ispmail.ntl.com@aamtaout03-winn.ispmail.ntl.com> for ; Sun, 8 Feb 2009 17:02:59 +0000 Received: from miranda.arrow ([213.107.21.171]) by aamtaout03-winn.ispmail.ntl.com (InterMail vG.2.02.00.01 201-2161-120-102-20060912) with ESMTP id <20090208170259.HECJ2093.aamtaout03-winn.ispmail.ntl.com@miranda.arrow> for ; Sun, 8 Feb 2009 17:02:59 +0000 Received: from sdb by miranda.arrow with local (Exim 4.63) (envelope-from ) id 1LWD3Z-0007BH-OZ for qemu-devel@nongnu.org; Sun, 08 Feb 2009 17:02:57 +0000 Date: Sun, 8 Feb 2009 17:02:57 +0000 From: Stuart Brady Message-ID: <20090208170257.GA27593@miranda.arrow> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] Remove GenOpFunc typedefs 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 This patch removes the GenOpFunc typedefs from exec-all.h, which are no longer needed, now that dyngen has been removed. Signed-off-by: Stuart Brady Index: exec-all.h =================================================================== --- exec-all.h (revision 6563) +++ exec-all.h (working copy) @@ -57,11 +57,6 @@ extern target_ulong gen_opc_jump_pc[2]; extern uint32_t gen_opc_hflags[OPC_BUF_SIZE]; -typedef void (GenOpFunc)(void); -typedef void (GenOpFunc1)(long); -typedef void (GenOpFunc2)(long, long); -typedef void (GenOpFunc3)(long, long, long); - #include "qemu-log.h" void gen_intermediate_code(CPUState *env, struct TranslationBlock *tb); -- Stuart Brady