2010-05-05 Michael Snyder <msnyder@vmware.com>
* cli-dump.c (dump_memory_to_file): Delete unused variable. (restore_binary_file): Delete unused variable. * cli-decode.c (deprecated_cmd_warning): Delete unused variables. * cli-script.c (define_command): Delete unused variables. (recurse_read_control_structure): Delete unused variable. (script_from_file): Delete unused variable. * cli-cmds.c (complete_command): Delete unused variable. (disassemble_command): Delete unused variable.
This commit is contained in:
parent
9128a50386
commit
d36fc00bca
5 changed files with 26 additions and 10 deletions
|
@ -1,5 +1,28 @@
|
||||||
2010-05-05 Michael Snyder <msnyder@vmware.com>
|
2010-05-05 Michael Snyder <msnyder@vmware.com>
|
||||||
|
|
||||||
|
* cli-dump.c (dump_memory_to_file): Delete unused variable.
|
||||||
|
(restore_binary_file): Delete unused variable.
|
||||||
|
* cli-decode.c (deprecated_cmd_warning): Delete unused variables.
|
||||||
|
* cli-script.c (define_command): Delete unused variables.
|
||||||
|
(recurse_read_control_structure): Delete unused variable.
|
||||||
|
(script_from_file): Delete unused variable.
|
||||||
|
* cli-cmds.c (complete_command): Delete unused variable.
|
||||||
|
(disassemble_command): Delete unused variable.
|
||||||
|
|
||||||
|
* ax-gdb.c (gen_struct_elt_for_reference): Delete unused variables.
|
||||||
|
* tracepoint.c (delete_trace_variable_command):
|
||||||
|
Delete unused variables.
|
||||||
|
(encode_actions_1): Delete unused variables.
|
||||||
|
(start_tracing): Delete unused variable.
|
||||||
|
(trace_status_mi): Delete unused variable.
|
||||||
|
(tfind_1): Delete unused variable.
|
||||||
|
(trace_find_pc_command): Delete unused variable.
|
||||||
|
(trace_find_line_command): Delete unused variables.
|
||||||
|
(trace_find_range_command): Delete unused variables.
|
||||||
|
(trace_find_outside_command): Delete unused variables.
|
||||||
|
(parse_tracepoint_definition): Delete unused variables.
|
||||||
|
(tfile_fetch_registers): Delete unused variable.
|
||||||
|
|
||||||
* dcache.c (dcache_init): Delete unused variable.
|
* dcache.c (dcache_init): Delete unused variable.
|
||||||
(dcache_info): Delete unused variable.
|
(dcache_info): Delete unused variable.
|
||||||
|
|
||||||
|
|
|
@ -255,7 +255,6 @@ compare_strings (const void *arg1, const void *arg2)
|
||||||
static void
|
static void
|
||||||
complete_command (char *arg, int from_tty)
|
complete_command (char *arg, int from_tty)
|
||||||
{
|
{
|
||||||
int i;
|
|
||||||
int argpoint;
|
int argpoint;
|
||||||
char **completions, *point, *arg_prefix;
|
char **completions, *point, *arg_prefix;
|
||||||
|
|
||||||
|
@ -1117,7 +1116,7 @@ disassemble_command (char *arg, int from_tty)
|
||||||
struct gdbarch *gdbarch = get_current_arch ();
|
struct gdbarch *gdbarch = get_current_arch ();
|
||||||
CORE_ADDR low, high;
|
CORE_ADDR low, high;
|
||||||
char *name;
|
char *name;
|
||||||
CORE_ADDR pc, pc_masked;
|
CORE_ADDR pc;
|
||||||
int flags;
|
int flags;
|
||||||
|
|
||||||
name = NULL;
|
name = NULL;
|
||||||
|
|
|
@ -1422,8 +1422,6 @@ deprecated_cmd_warning (char **text)
|
||||||
struct cmd_list_element *alias = NULL;
|
struct cmd_list_element *alias = NULL;
|
||||||
struct cmd_list_element *prefix_cmd = NULL;
|
struct cmd_list_element *prefix_cmd = NULL;
|
||||||
struct cmd_list_element *cmd = NULL;
|
struct cmd_list_element *cmd = NULL;
|
||||||
struct cmd_list_element *c;
|
|
||||||
char *type;
|
|
||||||
|
|
||||||
if (!lookup_cmd_composition (*text, &alias, &prefix_cmd, &cmd))
|
if (!lookup_cmd_composition (*text, &alias, &prefix_cmd, &cmd))
|
||||||
/* return if text doesn't evaluate to a command */
|
/* return if text doesn't evaluate to a command */
|
||||||
|
|
|
@ -223,7 +223,6 @@ dump_memory_to_file (char *cmd, char *mode, char *file_format)
|
||||||
void *buf;
|
void *buf;
|
||||||
char *lo_exp;
|
char *lo_exp;
|
||||||
char *hi_exp;
|
char *hi_exp;
|
||||||
int len;
|
|
||||||
|
|
||||||
/* Open the file. */
|
/* Open the file. */
|
||||||
filename = scan_filename_with_cleanup (&cmd, NULL);
|
filename = scan_filename_with_cleanup (&cmd, NULL);
|
||||||
|
@ -513,7 +512,6 @@ static void
|
||||||
restore_binary_file (char *filename, struct callback_data *data)
|
restore_binary_file (char *filename, struct callback_data *data)
|
||||||
{
|
{
|
||||||
FILE *file = fopen_with_cleanup (filename, FOPEN_RB);
|
FILE *file = fopen_with_cleanup (filename, FOPEN_RB);
|
||||||
int status;
|
|
||||||
gdb_byte *buf;
|
gdb_byte *buf;
|
||||||
long len;
|
long len;
|
||||||
|
|
||||||
|
|
|
@ -1047,7 +1047,6 @@ recurse_read_control_structure (char * (*read_next_line_func) (void),
|
||||||
enum misc_command_type val;
|
enum misc_command_type val;
|
||||||
enum command_control_type ret;
|
enum command_control_type ret;
|
||||||
struct command_line **body_ptr, *child_tail, *next;
|
struct command_line **body_ptr, *child_tail, *next;
|
||||||
char *p;
|
|
||||||
|
|
||||||
child_tail = NULL;
|
child_tail = NULL;
|
||||||
current_body = 1;
|
current_body = 1;
|
||||||
|
@ -1408,8 +1407,8 @@ define_command (char *comname, int from_tty)
|
||||||
CMD_POST_HOOK
|
CMD_POST_HOOK
|
||||||
};
|
};
|
||||||
struct command_line *cmds;
|
struct command_line *cmds;
|
||||||
struct cmd_list_element *c, *newc, *oldc, *hookc = 0, **list;
|
struct cmd_list_element *c, *newc, *hookc = 0, **list;
|
||||||
char *tem, *tem2, *comfull;
|
char *tem, *comfull;
|
||||||
char tmpbuf[MAX_TMPBUF];
|
char tmpbuf[MAX_TMPBUF];
|
||||||
int hook_type = CMD_NO_HOOK;
|
int hook_type = CMD_NO_HOOK;
|
||||||
int hook_name_size = 0;
|
int hook_name_size = 0;
|
||||||
|
@ -1588,7 +1587,6 @@ script_from_file (FILE *stream, const char *file)
|
||||||
{
|
{
|
||||||
struct cleanup *old_cleanups;
|
struct cleanup *old_cleanups;
|
||||||
struct source_cleanup_lines_args old_lines;
|
struct source_cleanup_lines_args old_lines;
|
||||||
int needed_length;
|
|
||||||
|
|
||||||
if (stream == NULL)
|
if (stream == NULL)
|
||||||
internal_error (__FILE__, __LINE__, _("called with NULL file pointer!"));
|
internal_error (__FILE__, __LINE__, _("called with NULL file pointer!"));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue