mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00: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>
|
||||
|
||||
* remote-sim.h (sim_load): Add const to prog.
|
||||
|
||||
2014-02-09 Doug Evans <xdje42@gmail.com>
|
||||
|
||||
* section-scripts.h: New file.
|
||||
|
||||
@@ -140,7 +140,7 @@ void sim_close (SIM_DESC sd, int quitting);
|
||||
Such manipulation should probably (?) occure in
|
||||
sim_create_inferior. */
|
||||
|
||||
SIM_RC sim_load (SIM_DESC sd, char *prog, struct bfd *abfd, int from_tty);
|
||||
SIM_RC sim_load (SIM_DESC sd, const char *prog, struct bfd *abfd, int from_tty);
|
||||
|
||||
|
||||
/* Prepare to run the simulated program.
|
||||
|
||||
Reference in New Issue
Block a user