Skip to content

Commit

Permalink
Stop limiting the number of TSan backtrace size to 8
Browse files Browse the repository at this point in the history
We currently limit the length of TSan returned backtraces to 8, which is not necessary (and a bug, most likely). Let's remove this.

Differential Revision: https://reviews.llvm.org/D28035

llvm-svn: 291522
  • Loading branch information
kubamracek committed Jan 10, 2017
1 parent c6e3b6f commit 89c3170
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -206,7 +206,8 @@ CreateStackTrace(ValueObjectSP o,
StructuredData::Array *trace = new StructuredData::Array();
ValueObjectSP trace_value_object =
o->GetValueForExpressionPath(trace_item_name.c_str());
for (int j = 0; j < 8; j++) {
size_t count = trace_value_object->GetNumChildren();
for (size_t j = 0; j < count; j++) {
addr_t trace_addr =
trace_value_object->GetChildAtIndex(j, true)->GetValueAsUnsigned(0);
if (trace_addr == 0)
Expand Down

0 comments on commit 89c3170

Please sign in to comment.