From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Li3n9-0002VG-Io for qemu-devel@nongnu.org; Fri, 13 Mar 2009 05:34:59 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Li3n8-0002UQ-PH for qemu-devel@nongnu.org; Fri, 13 Mar 2009 05:34:59 -0400 Received: from [199.232.76.173] (port=34649 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Li3n8-0002U9-E7 for qemu-devel@nongnu.org; Fri, 13 Mar 2009 05:34:58 -0400 Received: from savannah.gnu.org ([199.232.41.3]:54146 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 1Li3n8-0006KM-6F for qemu-devel@nongnu.org; Fri, 13 Mar 2009 05:34:58 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Li3n7-0006t6-I2 for qemu-devel@nongnu.org; Fri, 13 Mar 2009 09:34:57 +0000 Received: from aurel32 by cvs.savannah.gnu.org with local (Exim 4.69) (envelope-from ) id 1Li3n7-0006t2-5R for qemu-devel@nongnu.org; Fri, 13 Mar 2009 09:34:57 +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: Fri, 13 Mar 2009 09:34:57 +0000 Subject: [Qemu-devel] [6830] tcg: allow bswap16_i32 to be implemented by TCG backends 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: 6830 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6830 Author: aurel32 Date: 2009-03-13 09:34:56 +0000 (Fri, 13 Mar 2009) Log Message: ----------- tcg: allow bswap16_i32 to be implemented by TCG backends Signed-off-by: Aurelien Jarno Modified Paths: -------------- trunk/tcg/tcg-opc.h Modified: trunk/tcg/tcg-opc.h =================================================================== --- trunk/tcg/tcg-opc.h 2009-03-13 09:34:48 UTC (rev 6829) +++ trunk/tcg/tcg-opc.h 2009-03-13 09:34:56 UTC (rev 6830) @@ -89,6 +89,9 @@ #ifdef TCG_TARGET_HAS_ext16s_i32 DEF2(ext16s_i32, 1, 1, 0, 0) #endif +#ifdef TCG_TARGET_HAS_bswap16_i32 +DEF2(bswap16_i32, 1, 1, 0, 0) +#endif #ifdef TCG_TARGET_HAS_bswap32_i32 DEF2(bswap32_i32, 1, 1, 0, 0) #endif