qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] TCG: s390x: Fix compilation breakage


From: Alexander Graf
Subject: [Qemu-devel] [PATCH] TCG: s390x: Fix compilation breakage
Date: Wed, 9 Nov 2011 02:41:13 +0100

While we're waiting for a proper fix to the compilation issue with
TCGRegs on s390x targets, I would like to have a quick fix in the
tree that allows us to build at all. I'd happily remove it again
later when we have a real fix.

This patch just #defines TCGReg to int, rendering the target API
compatible to the other targets again.

CC: Richard Henderson <address@hidden>
CC: Stefan Weil <address@hidden>
Signed-off-by: Alexander Graf <address@hidden>
---
 tcg/s390/tcg-target.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/tcg/s390/tcg-target.c b/tcg/s390/tcg-target.c
index 4967f17..2ac7421 100644
--- a/tcg/s390/tcg-target.c
+++ b/tcg/s390/tcg-target.c
@@ -24,6 +24,9 @@
  * THE SOFTWARE.
  */
 
+/* XXX hack to make us compatible to external defines for now */
+#define TCGReg int
+
 /* ??? The translation blocks produced by TCG are generally small enough to
    be entirely reachable with a 16-bit displacement.  Leaving the option for
    a 32-bit displacement here Just In Case.  */
-- 
1.6.0.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]