From bda3c82e11615ca9e7751d1f3cfb161026ee742a Mon Sep 17 00:00:00 2001 From: Kerrick Staley Date: Wed, 8 Jul 2020 16:42:12 -0700 Subject: [PATCH] Increase kMaxStackDepth to 254 [alkondratenko@gmail.com: reduced value from 256 to 254] --- src/profiledata.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/profiledata.h b/src/profiledata.h index b94b28c..a4f0446 100644 --- a/src/profiledata.h +++ b/src/profiledata.h @@ -101,7 +101,7 @@ class ProfileData { int frequency_; // Sample frequency. }; - static const int kMaxStackDepth = 64; // Max stack depth stored in profile + static const int kMaxStackDepth = 254; // Max stack depth stored in profile ProfileData(); ~ProfileData();