From: Julian Seward Date: Thu, 19 Sep 2013 09:14:56 +0000 (+0000) Subject: Recent libxul.so on ARM has more than 5000 CIEs. Increase N_CIEs, X-Git-Tag: svn/VALGRIND_3_9_0~126 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=82b31476a3f6094b9432d56c7340fad59976c0b3;p=thirdparty%2Fvalgrind.git Recent libxul.so on ARM has more than 5000 CIEs. Increase N_CIEs, therefore. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13565 --- diff --git a/coregrind/m_debuginfo/readdwarf.c b/coregrind/m_debuginfo/readdwarf.c index 0e369c51e5..ba98e54845 100644 --- a/coregrind/m_debuginfo/readdwarf.c +++ b/coregrind/m_debuginfo/readdwarf.c @@ -3666,7 +3666,7 @@ static void init_CIE ( CIE* cie ) cie->saw_z_augmentation = False; } -#define N_CIEs 5000 +#define N_CIEs 8000 static CIE the_CIEs[N_CIEs];