From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LCXPn-0000qu-NS for qemu-devel@nongnu.org; Tue, 16 Dec 2008 05:44:35 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LCXPk-0000ov-8B for qemu-devel@nongnu.org; Tue, 16 Dec 2008 05:44:34 -0500 Received: from [199.232.76.173] (port=46659 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LCXPj-0000oi-PF for qemu-devel@nongnu.org; Tue, 16 Dec 2008 05:44:31 -0500 Received: from savannah.gnu.org ([199.232.41.3]:41788 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 1LCXPj-0006Xe-Cs for qemu-devel@nongnu.org; Tue, 16 Dec 2008 05:44:31 -0500 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1LCXPi-0006MK-Kw for qemu-devel@nongnu.org; Tue, 16 Dec 2008 10:44:30 +0000 Received: from aurel32 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1LCXPi-0006MG-BM for qemu-devel@nongnu.org; Tue, 16 Dec 2008 10:44:30 +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: Tue, 16 Dec 2008 10:44:30 +0000 Subject: [Qemu-devel] [6069] target-ppc: add comments about constants introduced in revision 6046 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: 6069 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6069 Author: aurel32 Date: 2008-12-16 10:44:29 +0000 (Tue, 16 Dec 2008) Log Message: ----------- target-ppc: add comments about constants introduced in revision 6046 Signed-off-by: Aurelien Jarno Revision Links: -------------- http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6046 Modified Paths: -------------- trunk/target-ppc/op_helper.c Modified: trunk/target-ppc/op_helper.c =================================================================== --- trunk/target-ppc/op_helper.c 2008-12-16 10:44:22 UTC (rev 6068) +++ trunk/target-ppc/op_helper.c 2008-12-16 10:44:29 UTC (rev 6069) @@ -1519,7 +1519,7 @@ uint64_t helper_fre (uint64_t arg) { CPU_DoubleU fone, farg; - fone.ll = 0x3FF0000000000000ULL; + fone.ll = 0x3FF0000000000000ULL; /* 1.0 */ farg.ll = arg; if (unlikely(float64_is_signaling_nan(farg.d))) { @@ -1550,7 +1550,7 @@ uint64_t helper_fres (uint64_t arg) { CPU_DoubleU fone, farg; - fone.ll = 0x3FF0000000000000ULL; + fone.ll = 0x3FF0000000000000ULL; /* 1.0 */ farg.ll = arg; if (unlikely(float64_is_signaling_nan(farg.d))) { @@ -1586,7 +1586,7 @@ uint64_t helper_frsqrte (uint64_t arg) { CPU_DoubleU fone, farg; - fone.ll = 0x3FF0000000000000ULL; + fone.ll = 0x3FF0000000000000ULL; /* 1.0 */ farg.ll = arg; if (unlikely(float64_is_signaling_nan(farg.d))) {