From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lg6Wy-0000w9-Cl for qemu-devel@nongnu.org; Sat, 07 Mar 2009 19:06:12 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lg6Wx-0000vl-LP for qemu-devel@nongnu.org; Sat, 07 Mar 2009 19:06:12 -0500 Received: from [199.232.76.173] (port=48440 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lg6Wx-0000vi-CG for qemu-devel@nongnu.org; Sat, 07 Mar 2009 19:06:11 -0500 Received: from savannah.gnu.org ([199.232.41.3]:59484 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 1Lg6Ww-0000xi-UC for qemu-devel@nongnu.org; Sat, 07 Mar 2009 19:06:11 -0500 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Lg6Ww-0000fm-IB for qemu-devel@nongnu.org; Sun, 08 Mar 2009 00:06:10 +0000 Received: from aurel32 by cvs.savannah.gnu.org with local (Exim 4.69) (envelope-from ) id 1Lg6Ww-0000fh-Bi for qemu-devel@nongnu.org; Sun, 08 Mar 2009 00:06:10 +0000 MIME-Version: 1.0 Errors-To: aurel32 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Aurelien Jarno Message-Id: Date: Sun, 08 Mar 2009 00:06:10 +0000 Subject: [Qemu-devel] [6774] target-mips: remove 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: 6774 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6774 Author: aurel32 Date: 2009-03-08 00:06:10 +0000 (Sun, 08 Mar 2009) Log Message: ----------- target-mips: remove dead code Signed-off-by: Aurelien Jarno Modified Paths: -------------- trunk/target-mips/op_helper.c Modified: trunk/target-mips/op_helper.c =================================================================== --- trunk/target-mips/op_helper.c 2009-03-08 00:06:01 UTC (rev 6773) +++ trunk/target-mips/op_helper.c 2009-03-08 00:06:10 UTC (rev 6774) @@ -113,40 +113,6 @@ env->active_tc.HI[0] = (int32_t)(HILO >> 32); } -#if TARGET_LONG_BITS > HOST_LONG_BITS -void helper_madd (target_ulong t0, target_ulong t1) -{ - int64_t tmp; - - tmp = ((int64_t)(int32_t)t0 * (int64_t)(int32_t)t1); - set_HILO((int64_t)get_HILO() + tmp); -} - -void helper_maddu (target_ulong t0, target_ulong t1) -{ - uint64_t tmp; - - tmp = ((uint64_t)(uint32_t)t0 * (uint64_t)(uint32_t)t1); - set_HILO(get_HILO() + tmp); -} - -void helper_msub (target_ulong t0, target_ulong t1) -{ - int64_t tmp; - - tmp = ((int64_t)(int32_t)t0 * (int64_t)(int32_t)t1); - set_HILO((int64_t)get_HILO() - tmp); -} - -void helper_msubu (target_ulong t0, target_ulong t1) -{ - uint64_t tmp; - - tmp = ((uint64_t)(uint32_t)t0 * (uint64_t)(uint32_t)t1); - set_HILO(get_HILO() - tmp); -} -#endif /* TARGET_LONG_BITS > HOST_LONG_BITS */ - /* Multiplication variants of the vr54xx. */ target_ulong helper_muls (target_ulong t0, target_ulong t1) {