diff options
author | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-07-26 11:20:54 +0000 |
---|---|---|
committer | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-07-26 11:20:54 +0000 |
commit | 5424fd1018789561dcbaf516a28db5fb02ec42b5 (patch) | |
tree | 8407c32560aafdebf43ab9bbddcf989bced4a2ca | |
parent | 6fc9dbcc17fc158886131df2cb6d2f190fccf736 (diff) | |
download | qemu-5424fd1018789561dcbaf516a28db5fb02ec42b5.zip |
Reduce amount of space reserved for tb jump
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4947 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r-- | tcg/ppc64/tcg-target.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 (); |