mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:45:56 +08:00
sim: constify prog_name
There's no need for the prog_name handed down to the core to be mutable, so add const markings to it and all the related funcs.
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
2014-03-05 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* interp.c (sim_load): Add const to prog.
|
||||
|
||||
2013-09-23 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* configure: Regenerate.
|
||||
@ -13,8 +17,7 @@
|
||||
2012-05-24 Pedro Alves <palves@redhat.com>
|
||||
|
||||
PR gdb/7205
|
||||
|
||||
Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
|
||||
* Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
|
||||
|
||||
2012-03-24 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
|
@ -1793,7 +1793,7 @@ sim_close (SIM_DESC sd, int quitting)
|
||||
}
|
||||
|
||||
SIM_RC
|
||||
sim_load (SIM_DESC sd, char *prog, bfd *abfd, int from_tty)
|
||||
sim_load (SIM_DESC sd, const char *prog, bfd *abfd, int from_tty)
|
||||
{
|
||||
bfd *prog_bfd;
|
||||
|
||||
|
Reference in New Issue
Block a user