]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Increase size of temp area to 100k to handle some really useless
authorJulian Seward <jseward@acm.org>
Mon, 16 Aug 2004 21:59:34 +0000 (21:59 +0000)
committerJulian Seward <jseward@acm.org>
Mon, 16 Aug 2004 21:59:34 +0000 (21:59 +0000)
code generation of long BBs.

git-svn-id: svn://svn.valgrind.org/vex/trunk@170

VEX/priv/main/vex_util.c

index 601176bb234af024c4cc7d88801f56255cbfbfd9..e6f614d98d80a4f8fd71fab08dbc60980163e770 100644 (file)
@@ -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;