From: Julian Seward Date: Mon, 16 Aug 2004 21:59:34 +0000 (+0000) Subject: Increase size of temp area to 100k to handle some really useless X-Git-Tag: svn/VALGRIND_3_0_1^2~1164 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=401af9b34a2d781010598aec993c072f2fef3cdf;p=thirdparty%2Fvalgrind.git Increase size of temp area to 100k to handle some really useless code generation of long BBs. git-svn-id: svn://svn.valgrind.org/vex/trunk@170 --- diff --git a/VEX/priv/main/vex_util.c b/VEX/priv/main/vex_util.c index 601176bb23..e6f614d98d 100644 --- a/VEX/priv/main/vex_util.c +++ b/VEX/priv/main/vex_util.c @@ -24,7 +24,7 @@ MByte/sec. Once the size increases enough to fall out of the cache into memory, the rate falls by about a factor of 3. */ -#define N_TEMPORARY_BYTES 50000 +#define N_TEMPORARY_BYTES 100000 static Char temporary[N_TEMPORARY_BYTES]; static Int temporary_used = 0;