From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L3Zlz-0004CA-Aj for qemu-devel@nongnu.org; Fri, 21 Nov 2008 12:26:27 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L3Zly-0004BT-KA for qemu-devel@nongnu.org; Fri, 21 Nov 2008 12:26:26 -0500 Received: from [199.232.76.173] (port=39705 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L3Zly-0004BQ-9F for qemu-devel@nongnu.org; Fri, 21 Nov 2008 12:26:26 -0500 Received: from savannah.gnu.org ([199.232.41.3]:48279 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 1L3Zly-0007zb-Df for qemu-devel@nongnu.org; Fri, 21 Nov 2008 12:26:26 -0500 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1L3Zlw-0001n3-VR for qemu-devel@nongnu.org; Fri, 21 Nov 2008 17:26:25 +0000 Received: from edgar_igl by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1L3Zlw-0001my-Bo for qemu-devel@nongnu.org; Fri, 21 Nov 2008 17:26:24 +0000 MIME-Version: 1.0 Errors-To: edgar_igl Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: "Edgar E. Iglesias" Message-Id: Date: Fri, 21 Nov 2008 17:26:24 +0000 Subject: [Qemu-devel] [5767] CRIS: remove unused op_template.h. 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: 5767 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5767 Author: edgar_igl Date: 2008-11-21 17:26:23 +0000 (Fri, 21 Nov 2008) Log Message: ----------- CRIS: remove unused op_template.h. Remove unused file, reported by Laurent Desnogues. Signed-off-by: Edgar E. Iglesias Removed Paths: ------------- trunk/target-cris/op_template.h Deleted: trunk/target-cris/op_template.h =================================================================== --- trunk/target-cris/op_template.h 2008-11-21 16:25:17 UTC (rev 5766) +++ trunk/target-cris/op_template.h 2008-11-21 17:26:23 UTC (rev 5767) @@ -1,48 +0,0 @@ -/* - * CRIS micro operations (templates for various register related - * operations) - * - * Copyright (c) 2003 Fabrice Bellard - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -#ifndef SET_REG -#define SET_REG(x) REG = x -#endif - -void OPPROTO glue(op_movl_T0_, REGNAME)(void) -{ - T0 = REG; -} - -void OPPROTO glue(op_movl_T1_, REGNAME)(void) -{ - T1 = REG; -} - -void OPPROTO glue(glue(op_movl_, REGNAME), _T0)(void) -{ - SET_REG (T0); -} - -void OPPROTO glue(glue(op_movl_, REGNAME), _T1)(void) -{ - SET_REG (T1); -} - -#undef REG -#undef REGNAME -#undef SET_REG