[Lldb-commits] [PATCH] D28035: Stop limiting the number of TSan backtrace size to 8

2017-01-09 Thread Phabricator via Phabricator via lldb-commits
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=83753#toc Repository: rL LLVM

[Lldb-commits] [lldb] r291522 - Stop limiting the number of TSan backtrace size to 8

2017-01-09 Thread Kuba Mracek via lldb-commits
Author: kuba.brecka Date: Mon Jan 9 19:14:52 2017 New Revision: 291522 URL: http://llvm.org/viewvc/llvm-project?rev=291522=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

[Lldb-commits] [lldb] r291500 - [cmake] Obtain LLVM_CMAKE_PATH from llvm-config

2017-01-09 Thread Michal Gorny via lldb-commits
Author: mgorny Date: Mon Jan 9 17:12:37 2017 New Revision: 291500 URL: http://llvm.org/viewvc/llvm-project?rev=291500=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 locally.

[Lldb-commits] [PATCH] D28466: Improve Type::GetTypeScopeAndBasenameHelper and add unit tests

2017-01-09 Thread Tamas Berghammer via Phabricator via lldb-commits
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

[Lldb-commits] [PATCH] D28155: Force the installation of lldb-server and lldb-argdumper

2017-01-09 Thread Chris Bieneman via Phabricator via lldb-commits
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

[Lldb-commits] [PATCH] D28466: Improve Type::GetTypeScopeAndBasenameHelper and add unit tests

2017-01-09 Thread Greg Clayton via Phabricator via 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

[Lldb-commits] [PATCH] D28466: Improve Type::GetTypeScopeAndBasenameHelper and add unit tests

2017-01-09 Thread Tamas Berghammer via Phabricator via lldb-commits
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