From: Nicholas Nethercote Date: Mon, 24 Feb 2003 10:21:45 +0000 (+0000) Subject: Increased maximum number of non-compact helpers. X-Git-Tag: svn/VALGRIND_1_9_4~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cf515e3eefe123d8d2283311e4b6eec43ac290bb;p=thirdparty%2Fvalgrind.git Increased maximum number of non-compact helpers. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1432 --- diff --git a/coregrind/vg_main.c b/coregrind/vg_main.c index f129f2e1f6..a308c2b5e9 100644 --- a/coregrind/vg_main.c +++ b/coregrind/vg_main.c @@ -105,7 +105,7 @@ Int VGOFF_(helper_undefined_instruction) = INVALID_OFFSET; /* MAX_NONCOMPACT_HELPERS can be increased easily. If MAX_COMPACT_HELPERS is * increased too much, they won't really be compact any more... */ #define MAX_COMPACT_HELPERS 8 -#define MAX_NONCOMPACT_HELPERS 24 +#define MAX_NONCOMPACT_HELPERS 50 UInt VG_(n_compact_helpers) = 0; UInt VG_(n_noncompact_helpers) = 0;