[Lldb-commits] [lldb] r205539 - Add explict dependencies on swig .i files for cmake builds

2014-04-03 Thread Ed Maste
Author: emaste Date: Thu Apr 3 10:03:11 2014 New Revision: 205539 URL: http://llvm.org/viewvc/llvm-project?rev=205539view=rev Log: Add explict dependencies on swig .i files for cmake builds llvm.org/pr19316 Modified: lldb/trunk/scripts/CMakeLists.txt Modified:

[Lldb-commits] [lldb] r205544 - Get dis -c -s working again.

2014-04-03 Thread Jim Ingham
Author: jingham Date: Thu Apr 3 12:16:17 2014 New Revision: 205544 URL: http://llvm.org/viewvc/llvm-project?rev=205544view=rev Log: Get dis -c -s working again. pr19324 Modified: lldb/trunk/source/Commands/CommandObjectDisassemble.cpp Modified:

[Lldb-commits] [lldb] r205555 - Avoid crash if symbol returns a null name

2014-04-03 Thread Ed Maste
Author: emaste Date: Thu Apr 3 14:27:39 2014 New Revision: 20 URL: http://llvm.org/viewvc/llvm-project?rev=20view=rev Log: Avoid crash if symbol returns a null name Modified: lldb/trunk/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp Modified:

Re: [Lldb-commits] [lldb] r205555 - Avoid crash if symbol returns a null name

2014-04-03 Thread Greg Clayton
It is possible to get a NULL name. The ConstString class has the following: const char * AsCString(const char *value_if_empty = NULL) const Since no value was provided, it will return NULL if empty, so your fix is good. On Apr 3, 2014, at 12:44 PM, Ed Maste ema...@freebsd.org wrote: