forked from OSchip/llvm-project
parent
4b963415c2
commit
b4cb0be3b7
|
@ -42,7 +42,7 @@ g_option_table[] =
|
|||
{ LLDB_OPT_SET_1, false, "no-summary-depth", 'Y', optional_argument, NULL, 0, eArgTypeCount, "Set the depth at which omitting summary information stops (default is 1)."},
|
||||
{ LLDB_OPT_SET_1, false, "raw-output", 'R', no_argument, NULL, 0, eArgTypeNone, "Don't use formatting options."},
|
||||
{ LLDB_OPT_SET_1, false, "show-all-children",'A', no_argument, NULL, 0, eArgTypeNone, "Ignore the upper bound on the number of children to show."},
|
||||
{ 0, false, NULL, 0, 0, NULL, NULL, eArgTypeNone, NULL }
|
||||
{ 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
|
||||
};
|
||||
|
||||
uint32_t
|
||||
|
|
|
@ -132,7 +132,7 @@ ThreadPlanCallFunction::ThreadPlanCallFunction (Thread &thread,
|
|||
m_valid (false),
|
||||
m_stop_other_threads (stop_other_threads),
|
||||
m_function_addr (function),
|
||||
m_function_sp (NULL),
|
||||
m_function_sp (0),
|
||||
m_return_type (return_type),
|
||||
m_takedown_done (false),
|
||||
m_stop_address (LLDB_INVALID_ADDRESS),
|
||||
|
@ -196,7 +196,7 @@ ThreadPlanCallFunction::ThreadPlanCallFunction (Thread &thread,
|
|||
m_valid (false),
|
||||
m_stop_other_threads (stop_other_threads),
|
||||
m_function_addr (function),
|
||||
m_function_sp(NULL),
|
||||
m_function_sp(0),
|
||||
m_return_type (return_type),
|
||||
m_takedown_done (false),
|
||||
m_stop_address (LLDB_INVALID_ADDRESS)
|
||||
|
|
Loading…
Reference in New Issue