aboutsummaryrefslogtreecommitdiff
path: root/sim/h8300
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2014-02-20 00:13:48 -0500
committerMike Frysinger <vapier@gentoo.org>2014-03-05 01:42:44 -0500
commitb2b255bdf3d29d97c10668b4bb5fceeb886a15f1 (patch)
treed4c8c2c2efcfe48f3192592b3845f06e841f9942 /sim/h8300
parentcfa7ea2a961c0930cfd76006bd3811e98a8f2366 (diff)
downloadfsf-binutils-gdb-b2b255bdf3d29d97c10668b4bb5fceeb886a15f1.zip
fsf-binutils-gdb-b2b255bdf3d29d97c10668b4bb5fceeb886a15f1.tar.gz
fsf-binutils-gdb-b2b255bdf3d29d97c10668b4bb5fceeb886a15f1.tar.bz2
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.
Diffstat (limited to 'sim/h8300')
-rw-r--r--sim/h8300/ChangeLog4
-rw-r--r--sim/h8300/compile.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog
index 38280e8..13bff7a 100644
--- a/sim/h8300/ChangeLog
+++ b/sim/h8300/ChangeLog
@@ -1,3 +1,7 @@
+2014-03-05 Mike Frysinger <vapier@gentoo.org>
+
+ * compile.c (sim_load): Add const to prog.
+
2014-02-17 Mike Frysinger <vapier@gentoo.org>
PR gdb/16450
diff --git a/sim/h8300/compile.c b/sim/h8300/compile.c
index 2c7316c..348cdbb 100644
--- a/sim/h8300/compile.c
+++ b/sim/h8300/compile.c
@@ -4974,7 +4974,7 @@ sim_close (SIM_DESC sd, int quitting)
/* Called by gdb to load a program into memory. */
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;