[Lldb-commits] [lldb] r313335 - Revert "[lit] Force site configs to run before source-tree configs"

2017-09-14 Thread Zachary Turner via lldb-commits
Author: zturner Date: Thu Sep 14 19:56:40 2017 New Revision: 313335 URL: http://llvm.org/viewvc/llvm-project?rev=313335=rev Log: Revert "[lit] Force site configs to run before source-tree configs" This patch is still breaking several multi-stage compiler-rt bots. I already know what the fix is,

[Lldb-commits] [lldb] r313332 - Fix syntax in lldb lit.cfg

2017-09-14 Thread Reid Kleckner via lldb-commits
Author: rnk Date: Thu Sep 14 18:30:52 2017 New Revision: 313332 URL: http://llvm.org/viewvc/llvm-project?rev=313332=rev Log: Fix syntax in lldb lit.cfg Modified: lldb/trunk/lit/lit.cfg Modified: lldb/trunk/lit/lit.cfg URL:

[Lldb-commits] [lldb] r313327 - Wire up the breakpoint name help string.

2017-09-14 Thread Jim Ingham via lldb-commits
Author: jingham Date: Thu Sep 14 17:52:35 2017 New Revision: 313327 URL: http://llvm.org/viewvc/llvm-project?rev=313327=rev Log: Wire up the breakpoint name help string. Modified: lldb/trunk/include/lldb/API/SBBreakpointName.h

[Lldb-commits] [lldb] r313305 - Mention breakpoint names in the tutorial.

2017-09-14 Thread Jim Ingham via lldb-commits
Author: jingham Date: Thu Sep 14 15:20:31 2017 New Revision: 313305 URL: http://llvm.org/viewvc/llvm-project?rev=313305=rev Log: Mention breakpoint names in the tutorial. Modified: lldb/trunk/www/tutorial.html Modified: lldb/trunk/www/tutorial.html URL:

[Lldb-commits] [lldb] r313296 - Remove BreakpointName.h from all targets so it doesn't

2017-09-14 Thread Jim Ingham via lldb-commits
Author: jingham Date: Thu Sep 14 13:52:35 2017 New Revision: 313296 URL: http://llvm.org/viewvc/llvm-project?rev=313296=rev Log: Remove BreakpointName.h from all targets so it doesn't get included in headermaps or put in a CopyFiles phase. Modified: lldb/trunk/lldb.xcodeproj/project.pbxproj

[Lldb-commits] [lldb] r313293 - Add new files to the cmake lists.

2017-09-14 Thread Jim Ingham via lldb-commits
Author: jingham Date: Thu Sep 14 13:31:02 2017 New Revision: 313293 URL: http://llvm.org/viewvc/llvm-project?rev=313293=rev Log: Add new files to the cmake lists. Modified: lldb/trunk/source/API/CMakeLists.txt lldb/trunk/source/Breakpoint/CMakeLists.txt Modified:

[Lldb-commits] [lldb] r313270 - [lit] Force site configs to be run before source-tree configs

2017-09-14 Thread Zachary Turner via lldb-commits
Author: zturner Date: Thu Sep 14 09:47:58 2017 New Revision: 313270 URL: http://llvm.org/viewvc/llvm-project?rev=313270=rev Log: [lit] Force site configs to be run before source-tree configs This patch simplifies LLVM's lit infrastructure by enforcing an ordering that a site config is always run

[Lldb-commits] [lldb] r313265 - Remove uses of std::auto_ptr, it's going away in C++17.

2017-09-14 Thread Benjamin Kramer via lldb-commits
Author: d0k Date: Thu Sep 14 08:01:55 2017 New Revision: 313265 URL: http://llvm.org/viewvc/llvm-project?rev=313265=rev Log: Remove uses of std::auto_ptr, it's going away in C++17. std::unique_ptr is pretty much a drop-in replacement here. Also remove nullptr checks that are doing nothing.