* [Qemu-devel] [5710] Avoid compiler warning
@ 2008-11-12 20:36 malc
0 siblings, 0 replies; only message in thread
From: malc @ 2008-11-12 20:36 UTC (permalink / raw)
To: qemu-devel
Revision: 5710
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5710
Author: malc
Date: 2008-11-12 20:36:21 +0000 (Wed, 12 Nov 2008)
Log Message:
-----------
Avoid compiler warning
Modified Paths:
--------------
trunk/tcg/ppc64/tcg-target.c
Modified: trunk/tcg/ppc64/tcg-target.c
===================================================================
--- trunk/tcg/ppc64/tcg-target.c 2008-11-12 17:36:08 UTC (rev 5709)
+++ trunk/tcg/ppc64/tcg-target.c 2008-11-12 20:36:21 UTC (rev 5710)
@@ -901,7 +901,7 @@
{
/* XXX: suboptimal */
if (si == (int16_t) si
- || (((uint64_t) si >> 31) == 0) && (si & 0x8000) == 0)
+ || ((((uint64_t) si >> 31) == 0) && (si & 0x8000) == 0))
ppc_addi32 (s, rt, ra, si);
else {
tcg_out_movi (s, TCG_TYPE_I64, 0, si);
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-11-12 20:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-12 20:36 [Qemu-devel] [5710] Avoid compiler warning malc
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).