From 5424fd1018789561dcbaf516a28db5fb02ec42b5 Mon Sep 17 00:00:00 2001 From: malc Date: Sat, 26 Jul 2008 11:20:54 +0000 Subject: [PATCH] Reduce amount of space reserved for tb jump git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4947 c046a42c-6fe2-441c-8c8c-71466251a162 --- tcg/ppc64/tcg-target.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcg/ppc64/tcg-target.c b/tcg/ppc64/tcg-target.c index 83604ad82f..7d78f3b2fd 100644 --- a/tcg/ppc64/tcg-target.c +++ b/tcg/ppc64/tcg-target.c @@ -991,7 +991,7 @@ static void tcg_out_op (TCGContext *s, int opc, const TCGArg *args, /* direct jump method */ s->tb_jmp_offset[args[0]] = s->code_ptr - s->code_buf; - s->code_ptr += 32; + s->code_ptr += 28; } else { tcg_abort ();