From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JzHcC-0004mf-0O for qemu-devel@nongnu.org; Thu, 22 May 2008 16:42:20 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JzHcA-0004m4-HV for qemu-devel@nongnu.org; Thu, 22 May 2008 16:42:19 -0400 Received: from [199.232.76.173] (port=36786 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JzHcA-0004lv-F9 for qemu-devel@nongnu.org; Thu, 22 May 2008 16:42:18 -0400 Received: from savannah.gnu.org ([199.232.41.3]:43219 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 1JzHcA-0004qq-2t for qemu-devel@nongnu.org; Thu, 22 May 2008 16:42:18 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1JzHc8-000120-HD for qemu-devel@nongnu.org; Thu, 22 May 2008 20:42:16 +0000 Received: from ths by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1JzHc8-00011t-4N for qemu-devel@nongnu.org; Thu, 22 May 2008 20:42:16 +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, 22 May 2008 20:42:16 +0000 Subject: [Qemu-devel] [4535] Delete 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: 4535 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4535 Author: ths Date: 2008-05-22 20:42:15 +0000 (Thu, 22 May 2008) Log Message: ----------- Delete dead code. Modified Paths: -------------- trunk/target-mips/fop_template.c trunk/target-mips/op.c Modified: trunk/target-mips/fop_template.c =================================================================== --- trunk/target-mips/fop_template.c 2008-05-22 18:16:25 UTC (rev 4534) +++ trunk/target-mips/fop_template.c 2008-05-22 20:42:15 UTC (rev 4535) @@ -102,30 +102,3 @@ OP_PSSTORE_FREG(WTH2, WTH2_fpr, FREG) #endif - -#if defined (FTN) - -#define SET_RESET(treg, tregname) \ - void glue(op_set, tregname)(void) \ - { \ - treg = PARAM1; \ - FORCE_RET(); \ - } \ - void glue(op_reset, tregname)(void) \ - { \ - treg = 0; \ - FORCE_RET(); \ - } - -SET_RESET(WT0, _WT0) -SET_RESET(WT1, _WT1) -SET_RESET(WT2, _WT2) -SET_RESET(DT0, _DT0) -SET_RESET(DT1, _DT1) -SET_RESET(DT2, _DT2) -SET_RESET(WTH0, _WTH0) -SET_RESET(WTH1, _WTH1) -SET_RESET(WTH2, _WTH2) - -#undef SET_RESET -#endif Modified: trunk/target-mips/op.c =================================================================== --- trunk/target-mips/op.c 2008-05-22 18:16:25 UTC (rev 4534) +++ trunk/target-mips/op.c 2008-05-22 20:42:15 UTC (rev 4535) @@ -145,10 +145,6 @@ #include "fop_template.c" #undef FREG -#define FTN -#include "fop_template.c" -#undef FTN - /* Load and store */ #define MEMSUFFIX _raw #include "op_mem.c"