hhellyer updated this revision to Diff 59352.
hhellyer added a comment.
Made sure an object was always constructed for the std::unique_ptr in
SBMemoryRegionInfo.cpp.
Removed unused constructor from SBMemoryRegionInfo.h.
http://reviews.llvm.org/D20565
Files:
include/lldb/API/LLDB.h
include/
clayborg requested changes to this revision.
clayborg added a comment.
This revision now requires changes to proceed.
So a bit more cleanup. We should always have a valid object inside of a
SBMemoryRegionInfo or SBMemoryRegionInfoList so there is no need to ever check
the m_opaque_ap to see if i
Author: gclayton
Date: Thu Jun 2 12:19:39 2016
New Revision: 271543
URL: http://llvm.org/viewvc/llvm-project?rev=271543&view=rev
Log:
Fixed a problem where -gmodules debug info would be loaded by the DWO file
support accidentally and cause 1000s of files to be mapped into LLDB's address
space f
Author: gclayton
Date: Thu Jun 2 12:22:42 2016
New Revision: 271545
URL: http://llvm.org/viewvc/llvm-project?rev=271545&view=rev
Log:
LLDB needs to be able to handle DW_AT_GNU_dwo_name that are relative to the
DW_AT_comp_dir when using -gmodules with DWARF in .o files on darwin.
Modified:
Author: spyffe
Date: Thu Jun 2 12:59:47 2016
New Revision: 271551
URL: http://llvm.org/viewvc/llvm-project?rev=271551&view=rev
Log:
Fixed a problem where we couldn't call extern "C" functions.
Some compilers do not mark up C++ functions as extern "C" in the DWARF, so LLDB
has to fall back (if it
Author: tberghammer
Date: Thu Jun 2 20:03:04 2016
New Revision: 271618
URL: http://llvm.org/viewvc/llvm-project?rev=271618&view=rev
Log:
Fix makefile for TestExternCSymbols
Modified:
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/extern_c/Makefile
Modified: lldb/trunk/packages/Python/ll
zturner resigned from this revision.
zturner removed a reviewer: zturner.
Comment at: cmake/modules/LLDBConfig.cmake:225-235
@@ -224,3 +224,4 @@
+if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
check_cxx_compiler_flag("-Wno-deprecated-register"
CXX_SUPPORTS_NO