mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-10 19:24:29 +00:00
* mi/mi-cmd-stack.c (list_args_or_locals): Use internal_error.
Put "break" statements on their own line.
This commit is contained in:
parent
ae3b518947
commit
d6fd467483
@ -1,3 +1,8 @@
|
||||
2009-10-10 Pedro Alves <pedro@codesourcery.com>
|
||||
|
||||
* mi/mi-cmd-stack.c (list_args_or_locals): Use internal_error.
|
||||
Put "break" statements on their own line.
|
||||
|
||||
2009-10-09 Pedro Alves <pedro@codesourcery.com>
|
||||
|
||||
* linux-nat.c (linux_nat_wait_1): Bail out, if TARGET_WNOHANG and
|
||||
|
@ -256,13 +256,17 @@ list_args_or_locals (enum what_to_list what, int values, struct frame_info *fi)
|
||||
switch (what)
|
||||
{
|
||||
case locals:
|
||||
name_of_result = "locals"; break;
|
||||
name_of_result = "locals";
|
||||
break;
|
||||
case arguments:
|
||||
name_of_result = "args"; break;
|
||||
name_of_result = "args";
|
||||
break;
|
||||
case all:
|
||||
name_of_result = "variables"; break;
|
||||
name_of_result = "variables";
|
||||
break;
|
||||
default:
|
||||
gdb_assert (("unexpected value", 0));
|
||||
internal_error (__FILE__, __LINE__,
|
||||
"unexpected what_to_list: %d", (int) what);
|
||||
}
|
||||
|
||||
cleanup_list = make_cleanup_ui_out_list_begin_end (uiout, name_of_result);
|
||||
|
Loading…
x
Reference in New Issue
Block a user