From: Julian Seward Date: Sun, 12 Sep 2004 11:09:24 +0000 (+0000) Subject: Increase temp storage to 400k (for 20 insns!) ToDo: investigate. X-Git-Tag: svn/VALGRIND_3_0_1^2~1073 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=db0b36498d51a78c7864c10e8c5a8f718ac8e8e6;p=thirdparty%2Fvalgrind.git Increase temp storage to 400k (for 20 insns!) ToDo: investigate. git-svn-id: svn://svn.valgrind.org/vex/trunk@261 --- diff --git a/VEX/priv/main/vex_util.c b/VEX/priv/main/vex_util.c index e7ea5314d4..56ec372860 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 300000 +#define N_TEMPORARY_BYTES 400000 static Char temporary[N_TEMPORARY_BYTES]; static Int temporary_used = 0;