From 6109ce1fb435d4139946d123dbf97e6fffa6c0f0 Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Thu, 31 Mar 2005 15:48:57 +0000 Subject: [PATCH] Increase maximum translation size. This can happen when translating long sequences of x86 insns with IR optimisation disabled, so the tag-checking crap doesn't get knocked out like it usually does. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3492 --- coregrind/vg_translate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coregrind/vg_translate.c b/coregrind/vg_translate.c index 8ec866322..c236c3028 100644 --- a/coregrind/vg_translate.c +++ b/coregrind/vg_translate.c @@ -277,7 +277,7 @@ IRBB* vg_SP_update_pass ( IRBB* bb_in, VexGuestLayout* layout, /* Vex dumps the final code in here. Then we can copy it off wherever we like. */ -#define N_TMPBUF 10000 +#define N_TMPBUF 20000 static UChar tmpbuf[N_TMPBUF]; /* Function pointers we must supply to LibVEX in order that it