This revision was automatically updated to reflect the committed changes.
Closed by commit rL291522: Stop limiting the number of TSan backtrace size to 8
(authored by kuba.brecka).
Changed prior to commit:
https://reviews.llvm.org/D28035?vs=82280&id=83753#toc
Repository:
rL LLVM
https://rev
Author: kuba.brecka
Date: Mon Jan 9 19:14:52 2017
New Revision: 291522
URL: http://llvm.org/viewvc/llvm-project?rev=291522&view=rev
Log:
Stop limiting the number of TSan backtrace size to 8
We currently limit the length of TSan returned backtraces to 8, which is not
necessary (and a bug, most l
Author: mgorny
Date: Mon Jan 9 17:12:37 2017
New Revision: 291500
URL: http://llvm.org/viewvc/llvm-project?rev=291500&view=rev
Log:
[cmake] Obtain LLVM_CMAKE_PATH from llvm-config
Use the new --cmakedir option to obtain LLVM_CMAKE_PATH straight from
llvm-config instead of reconstructing it local
clayborg accepted this revision.
clayborg added a comment.
This revision is now accepted and ready to land.
Fix the consume_front mentioned in the inlined comment and this is good to go.
Comment at: source/Core/Module.cpp:1010-1011
if (type_scope.size() >= 2 && type_scop
tberghammer updated this revision to Diff 83669.
tberghammer marked 9 inline comments as done.
https://reviews.llvm.org/D28466
Files:
include/lldb/Symbol/Type.h
source/Core/Module.cpp
source/Symbol/Type.cpp
source/Symbol/TypeList.cpp
source/Symbol/TypeMap.cpp
unittests/Symbol/CMakeLis
beanz added a comment.
I think I fixed this in https://reviews.llvm.org/rL290934.
https://reviews.llvm.org/D28155
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
clayborg requested changes to this revision.
clayborg added a comment.
This revision now requires changes to proceed.
Switch over to using llvm::StringRef in the functions where mentioned.
Comment at: source/Symbol/Type.cpp:623
bool Type::GetTypeScopeAndBasename(const char *
tberghammer created this revision.
tberghammer added a reviewer: clayborg.
tberghammer added a subscriber: lldb-commits.
Herald added a subscriber: mgorny.
Improve Type::GetTypeScopeAndBasenameHelper and add unit tests
Previously it failed to handle nested types inside templated classes
m