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:
Mike Frysinger
2014-02-20 00:13:48 -05:00
parent cfa7ea2a96
commit b2b255bdf3
39 changed files with 99 additions and 24 deletions

View File

@@ -1,3 +1,7 @@
2014-03-05 Mike Frysinger <vapier@gentoo.org>
* gdb-if.c (sim_load): Add const to prog.
2013-09-23 Alan Modra <amodra@gmail.com>
* configure: Regenerate.

View File

@@ -128,7 +128,7 @@ open_objfile (const char *filename)
SIM_RC
sim_load (SIM_DESC sd, char *prog, struct bfd * abfd, int from_tty)
sim_load (SIM_DESC sd, const char *prog, struct bfd * abfd, int from_tty)
{
check_desc (sd);