aboutsummaryrefslogtreecommitdiff
path: root/sim/h8300
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-04-14 07:38:06 +0000
committerMike Frysinger <vapier@gentoo.org>2010-04-14 07:38:06 +0000
commit5558e7e691534636afa28f6bf68bfd83530d8054 (patch)
tree4f830ca8baba1d6598b383d6f82566ef12493cfe /sim/h8300
parente1caee70eebe9b2aad731f87a94237568d6fa9ac (diff)
downloadfsf-binutils-gdb-5558e7e691534636afa28f6bf68bfd83530d8054.zip
fsf-binutils-gdb-5558e7e691534636afa28f6bf68bfd83530d8054.tar.gz
fsf-binutils-gdb-5558e7e691534636afa28f6bf68bfd83530d8054.tar.bz2
sim: constify sim_write source buffer (part 2)
As pointed out by Sandra Loosemore, a bunch of targets define sim_write themselves instead of using the common/ code. So constify them too. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
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 e12d291..adda60e 100644
--- a/sim/h8300/ChangeLog
+++ b/sim/h8300/ChangeLog
@@ -1,3 +1,7 @@
+2010-04-14 Mike Frysinger <vapier@gentoo.org>
+
+ * compile.c (sim_write): Add const to buffer arg.
+
2010-01-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* configure: Regenerate.
diff --git a/sim/h8300/compile.c b/sim/h8300/compile.c
index 70394e6..44d60f6 100644
--- a/sim/h8300/compile.c
+++ b/sim/h8300/compile.c
@@ -4616,7 +4616,7 @@ sim_trace (SIM_DESC sd)
}
int
-sim_write (SIM_DESC sd, SIM_ADDR addr, unsigned char *buffer, int size)
+sim_write (SIM_DESC sd, SIM_ADDR addr, const unsigned char *buffer, int size)
{
int i;