gdb:
2013-03-15 Steve Ellcey <sellcey@mips.com> * remote-sim.c (sim_command_completer): Make char arguments const. include: 2013-03-15 Steve Ellcey <sellcey@mips.com> * gdb/remote-sim.h (sim_command_completer): Make char arguments const. sim: 2013-03-15 Steve Ellcey <sellcey@mips.com> * arm/wrapper.c (sim_complete_command): Make char arguments const. * avr/interp.c (sim_complete_command): Ditto. * common/sim-options.c (sim_complete_command): Ditto. * cr16/interp.c (sim_complete_command): Ditto. * erc32/interf.c (sim_complete_command): Ditto. * m32c/gdb-if.c (sim_complete_command): Ditto. * microblaze/interp.c (sim_complete_command): Ditto. * ppc/sim_calls.c (sim_complete_command): Ditto. * rl78/gdb-if.c (sim_complete_command): Ditto. * rx/gdb-if.c (sim_complete_command): Ditto. * sh/interp.c (sim_complete_command): Ditto.
This commit is contained in:
parent
a8347a2acd
commit
3cb2ab1a46
@ -1,3 +1,7 @@
|
|||||||
|
2013-03-15 Steve Ellcey <sellcey@mips.com>
|
||||||
|
|
||||||
|
* remote-sim.c (sim_command_completer): Make char arguments const.
|
||||||
|
|
||||||
2013-03-15 Tom Tromey <tromey@redhat.com>
|
2013-03-15 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
PR c++/15116:
|
PR c++/15116:
|
||||||
|
@ -1196,7 +1196,8 @@ simulator_command (char *args, int from_tty)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static VEC (char_ptr) *
|
static VEC (char_ptr) *
|
||||||
sim_command_completer (struct cmd_list_element *ignore, char *text, char *word)
|
sim_command_completer (struct cmd_list_element *ignore, const char *text,
|
||||||
|
const char *word)
|
||||||
{
|
{
|
||||||
struct sim_inferior_data *sim_data;
|
struct sim_inferior_data *sim_data;
|
||||||
char **tmp;
|
char **tmp;
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2013-03-15 Steve Ellcey <sellcey@mips.com>
|
||||||
|
|
||||||
|
* gdb/remote-sim.h (sim_command_completer): Make char arguments const.
|
||||||
|
|
||||||
2013-01-01 Joel Brobecker <brobecker@adacore.com>
|
2013-01-01 Joel Brobecker <brobecker@adacore.com>
|
||||||
|
|
||||||
Update year range in copyright notice of all files.
|
Update year range in copyright notice of all files.
|
||||||
|
@ -278,7 +278,7 @@ void sim_do_command (SIM_DESC sd, char *cmd);
|
|||||||
/* Complete a command based on the available sim commands. Returns an
|
/* Complete a command based on the available sim commands. Returns an
|
||||||
array of possible matches. */
|
array of possible matches. */
|
||||||
|
|
||||||
char **sim_complete_command (SIM_DESC sd, char *text, char *word);
|
char **sim_complete_command (SIM_DESC sd, const char *text, const char *word);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,17 @@
|
|||||||
|
2013-03-15 Steve Ellcey <sellcey@mips.com>
|
||||||
|
|
||||||
|
* arm/wrapper.c (sim_complete_command): Make char arguments const.
|
||||||
|
* avr/interp.c (sim_complete_command): Ditto.
|
||||||
|
* common/sim-options.c (sim_complete_command): Ditto.
|
||||||
|
* cr16/interp.c (sim_complete_command): Ditto.
|
||||||
|
* erc32/interf.c (sim_complete_command): Ditto.
|
||||||
|
* m32c/gdb-if.c (sim_complete_command): Ditto.
|
||||||
|
* microblaze/interp.c (sim_complete_command): Ditto.
|
||||||
|
* ppc/sim_calls.c (sim_complete_command): Ditto.
|
||||||
|
* rl78/gdb-if.c (sim_complete_command): Ditto.
|
||||||
|
* rx/gdb-if.c (sim_complete_command): Ditto.
|
||||||
|
* sh/interp.c (sim_complete_command): Ditto.
|
||||||
|
|
||||||
2013-01-01 Joel Brobecker <brobecker@adacore.com>
|
2013-01-01 Joel Brobecker <brobecker@adacore.com>
|
||||||
|
|
||||||
Update year range in copyright notice of all files.
|
Update year range in copyright notice of all files.
|
||||||
|
@ -945,7 +945,7 @@ sim_set_callbacks (ptr)
|
|||||||
}
|
}
|
||||||
|
|
||||||
char **
|
char **
|
||||||
sim_complete_command (SIM_DESC sd, char *text, char *word)
|
sim_complete_command (SIM_DESC sd, const char *text, const char *word)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -1855,7 +1855,7 @@ sim_set_callbacks (host_callback *ptr)
|
|||||||
}
|
}
|
||||||
|
|
||||||
char **
|
char **
|
||||||
sim_complete_command (SIM_DESC sd, char *text, char *word)
|
sim_complete_command (SIM_DESC sd, const char *text, const char *word)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -950,7 +950,7 @@ complete_option_list (char **ret, size_t *cnt, const struct option_list *ol,
|
|||||||
completed is stored in @word. Trailing text of @word is not. */
|
completed is stored in @word. Trailing text of @word is not. */
|
||||||
|
|
||||||
char **
|
char **
|
||||||
sim_complete_command (SIM_DESC sd, char *text, char *word)
|
sim_complete_command (SIM_DESC sd, const char *text, const char *word)
|
||||||
{
|
{
|
||||||
char **ret = NULL;
|
char **ret = NULL;
|
||||||
size_t cnt = 1;
|
size_t cnt = 1;
|
||||||
|
@ -1553,7 +1553,7 @@ sim_store_register (sd, rn, memory, length)
|
|||||||
}
|
}
|
||||||
|
|
||||||
char **
|
char **
|
||||||
sim_complete_command (SIM_DESC sd, char *text, char *word)
|
sim_complete_command (SIM_DESC sd, const char *text, const char *word)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -485,7 +485,7 @@ sim_do_command(sd, cmd)
|
|||||||
}
|
}
|
||||||
|
|
||||||
char **
|
char **
|
||||||
sim_complete_command (SIM_DESC sd, char *text, char *word)
|
sim_complete_command (SIM_DESC sd, const char *text, const char *word)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -704,7 +704,7 @@ sim_do_command (SIM_DESC sd, char *cmd)
|
|||||||
}
|
}
|
||||||
|
|
||||||
char **
|
char **
|
||||||
sim_complete_command (SIM_DESC sd, char *text, char *word)
|
sim_complete_command (SIM_DESC sd, const char *text, const char *word)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -1090,7 +1090,7 @@ sim_set_callbacks (host_callback *ptr)
|
|||||||
}
|
}
|
||||||
|
|
||||||
char **
|
char **
|
||||||
sim_complete_command (SIM_DESC sd, char *text, char *word)
|
sim_complete_command (SIM_DESC sd, const char *text, const char *word)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -259,7 +259,7 @@ sim_do_command (SIM_DESC sd, char *cmd)
|
|||||||
}
|
}
|
||||||
|
|
||||||
char **
|
char **
|
||||||
sim_complete_command (SIM_DESC sd, char *text, char *word)
|
sim_complete_command (SIM_DESC sd, const char *text, const char *word)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -567,7 +567,7 @@ sim_do_command (SIM_DESC sd, char *cmd)
|
|||||||
/* Stub for command completion. */
|
/* Stub for command completion. */
|
||||||
|
|
||||||
char **
|
char **
|
||||||
sim_complete_command (SIM_DESC sd, char *text, char *word)
|
sim_complete_command (SIM_DESC sd, const char *text, const char *word)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -864,7 +864,7 @@ sim_do_command (SIM_DESC sd, char *cmd)
|
|||||||
}
|
}
|
||||||
|
|
||||||
char **
|
char **
|
||||||
sim_complete_command (SIM_DESC sd, char *text, char *word)
|
sim_complete_command (SIM_DESC sd, const char *text, const char *word)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -2789,7 +2789,7 @@ sim_set_callbacks (p)
|
|||||||
}
|
}
|
||||||
|
|
||||||
char **
|
char **
|
||||||
sim_complete_command (SIM_DESC sd, char *text, char *word)
|
sim_complete_command (SIM_DESC sd, const char *text, const char *word)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user