diff mbox

TCG: s390x: Fix compilation breakage

Message ID 1320802873-22113-1-git-send-email-agraf@suse.de
State New
Headers show

Commit Message

Alexander Graf Nov. 9, 2011, 1:41 a.m. UTC
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 <rth@twiddle.net>
CC: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
---
 tcg/s390/tcg-target.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
diff mbox

Patch

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.  */