[asan] increase the initial buffer size in caller-callee dumper

llvm-svn: 220991
This commit is contained in:
Kostya Serebryany
2014-10-31 19:49:46 +00:00
parent 691e01d94e
commit 40aa4a26d1

View File

@@ -325,7 +325,7 @@ void CoverageData::DumpCallerCalleePairs() {
auto sym = Symbolizer::GetOrInit();
if (!sym)
return;
InternalScopedString out(4096 * 16);
InternalScopedString out(32 << 20);
uptr total = 0;
for (uptr i = 0; i < max_idx; i++) {
uptr *cc_cache = cc_array[i];