mirror of
https://github.com/intel/llvm.git
synced 2026-01-25 19:44:38 +08:00
[asan] increase the initial buffer size in caller-callee dumper
llvm-svn: 220991
This commit is contained in:
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user