From: Julian Seward Date: Thu, 9 Sep 2004 11:43:03 +0000 (+0000) Subject: Increase scratch space to 300k. ToDo: investigate why this is needed. X-Git-Tag: svn/VALGRIND_3_0_1^2~1088 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=12ed7f014d5bf0db6eafa63f7f0ff26215718f21;p=thirdparty%2Fvalgrind.git Increase scratch space to 300k. ToDo: investigate why this is needed. git-svn-id: svn://svn.valgrind.org/vex/trunk@246 --- diff --git a/VEX/priv/main/vex_util.c b/VEX/priv/main/vex_util.c index 036bb21ea2..e7ea5314d4 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 200000 +#define N_TEMPORARY_BYTES 300000 static Char temporary[N_TEMPORARY_BYTES]; static Int temporary_used = 0;