Increase the maximum size of the conflict cache even more, to 30
million.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10831 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/helgrind/libhb_core.c b/helgrind/libhb_core.c
index 7b0e976..0a07f4b 100644
--- a/helgrind/libhb_core.c
+++ b/helgrind/libhb_core.c
@@ -3797,7 +3797,7 @@
    /* Check for sane command line params.  Limit values must match
       those in hg_process_cmd_line_option. */
    tl_assert( HG_(clo_conflict_cache_size) >= 10*1000 );
-   tl_assert( HG_(clo_conflict_cache_size) <= 20*1000*1000 );
+   tl_assert( HG_(clo_conflict_cache_size) <= 30*1000*1000 );
 
    /* Check our counting is sane (expensive) */
    if (CHECK_CEM)