From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K9P1w-0001LG-1V for qemu-devel@nongnu.org; Thu, 19 Jun 2008 14:38:44 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K9P1v-0001Kz-HQ for qemu-devel@nongnu.org; Thu, 19 Jun 2008 14:38:43 -0400 Received: from [199.232.76.173] (port=56791 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K9P1v-0001Kt-BG for qemu-devel@nongnu.org; Thu, 19 Jun 2008 14:38:43 -0400 Received: from savannah.gnu.org ([199.232.41.3]:51289 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1K9P1u-0005iM-0s for qemu-devel@nongnu.org; Thu, 19 Jun 2008 14:38:42 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1K9P1s-0004xN-VV for qemu-devel@nongnu.org; Thu, 19 Jun 2008 18:38:41 +0000 Received: from ths by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1K9P1s-0004xJ-Qq for qemu-devel@nongnu.org; Thu, 19 Jun 2008 18:38:40 +0000 MIME-Version: 1.0 Errors-To: ths Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Thiemo Seufer Message-Id: Date: Thu, 19 Jun 2008 18:38:40 +0000 Subject: [Qemu-devel] [4754] Remove now-dead code. 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 Revision: 4754 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4754 Author: ths Date: 2008-06-19 18:38:40 +0000 (Thu, 19 Jun 2008) Log Message: ----------- Remove now-dead code. Modified Paths: -------------- trunk/target-mips/op.c Modified: trunk/target-mips/op.c =================================================================== --- trunk/target-mips/op.c 2008-06-19 18:35:02 UTC (rev 4753) +++ trunk/target-mips/op.c 2008-06-19 18:38:40 UTC (rev 4754) @@ -27,26 +27,6 @@ #ifndef CALL_FROM_TB0 #define CALL_FROM_TB0(func) func() #endif -#ifndef CALL_FROM_TB1 -#define CALL_FROM_TB1(func, arg0) func(arg0) -#endif -#ifndef CALL_FROM_TB1_CONST16 -#define CALL_FROM_TB1_CONST16(func, arg0) CALL_FROM_TB1(func, arg0) -#endif -#ifndef CALL_FROM_TB2 -#define CALL_FROM_TB2(func, arg0, arg1) func(arg0, arg1) -#endif -#ifndef CALL_FROM_TB2_CONST16 -#define CALL_FROM_TB2_CONST16(func, arg0, arg1) \ - CALL_FROM_TB2(func, arg0, arg1) -#endif -#ifndef CALL_FROM_TB3 -#define CALL_FROM_TB3(func, arg0, arg1, arg2) func(arg0, arg1, arg2) -#endif -#ifndef CALL_FROM_TB4 -#define CALL_FROM_TB4(func, arg0, arg1, arg2, arg3) \ - func(arg0, arg1, arg2, arg3) -#endif /* Load and store */ #define MEMSUFFIX _raw @@ -288,10 +268,3 @@ } #endif /* TARGET_LONG_BITS > HOST_LONG_BITS */ - -/* CP1 functions */ -#if 0 -# define DEBUG_FPU_STATE() CALL_FROM_TB1(dump_fpu, env) -#else -# define DEBUG_FPU_STATE() do { } while(0) -#endif