* [Qemu-devel] [6585] Fix DEBUG_TCGV compile error.
@ 2009-02-09 20:43 Aurelien Jarno
0 siblings, 0 replies; only message in thread
From: Aurelien Jarno @ 2009-02-09 20:43 UTC (permalink / raw)
To: qemu-devel
Revision: 6585
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6585
Author: aurel32
Date: 2009-02-09 20:43:53 +0000 (Mon, 09 Feb 2009)
Log Message:
-----------
Fix DEBUG_TCGV compile error.
Don't call TCGV_LOW on arg2. This section of code falls under
Signed-off-by: Nathan Froyd <froydnj@codesourcery.com>
Acked-by: Laurent Desnogues <laurent.desnogues@gmail.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Modified Paths:
--------------
trunk/tcg/tcg-op.h
Modified: trunk/tcg/tcg-op.h
===================================================================
--- trunk/tcg/tcg-op.h 2009-02-09 20:09:29 UTC (rev 6584)
+++ trunk/tcg/tcg-op.h 2009-02-09 20:43:53 UTC (rev 6585)
@@ -654,7 +654,7 @@
static inline void tcg_gen_ld16u_i64(TCGv_i64 ret, TCGv_ptr arg2,
tcg_target_long offset)
{
- tcg_gen_ld16u_i32(TCGV_LOW(ret), TCGV_LOW(arg2), offset);
+ tcg_gen_ld16u_i32(TCGV_LOW(ret), arg2, offset);
tcg_gen_movi_i32(TCGV_HIGH(ret), 0);
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-02-09 20:44 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-09 20:43 [Qemu-devel] [6585] Fix DEBUG_TCGV compile error Aurelien Jarno
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).