Commit 5424fd1018789561dcbaf516a28db5fb02ec42b5

Authored by malc
1 parent 6fc9dbcc

Reduce amount of space reserved for tb jump

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4947 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
tcg/ppc64/tcg-target.c
@@ -991,7 +991,7 @@ static void tcg_out_op (TCGContext *s, int opc, const TCGArg *args, @@ -991,7 +991,7 @@ static void tcg_out_op (TCGContext *s, int opc, const TCGArg *args,
991 /* direct jump method */ 991 /* direct jump method */
992 992
993 s->tb_jmp_offset[args[0]] = s->code_ptr - s->code_buf; 993 s->tb_jmp_offset[args[0]] = s->code_ptr - s->code_buf;
994 - s->code_ptr += 32; 994 + s->code_ptr += 28;
995 } 995 }
996 else { 996 else {
997 tcg_abort (); 997 tcg_abort ();