Up the maximum function count to 50,000

This commit is contained in:
Dr. Chat 2016-01-13 01:30:15 -06:00
parent 0cf6e166a1
commit 6d2f083b09
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ class X64CodeCache : public CodeCache {
// This is picked to be high enough to cover whatever we can reasonably
// expect. If we hit issues with this it probably means some corner case
// in analysis triggering.
static const size_t kMaximumFunctionCount = 30000;
static const size_t kMaximumFunctionCount = 50000;
struct UnwindReservation {
size_t data_size = 0;