summaryrefslogtreecommitdiff
path: root/sim/microblaze
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-10-26 22:42:10 +0545
committerMike Frysinger <vapier@gentoo.org>2022-10-31 21:24:39 +0545
commited60d3edd51f6c33fb0f3f09400094a1b1c2ceb2 (patch)
tree9fec7827dac0d17642f854d02c497a3b45692dfb /sim/microblaze
parentead2618501e8ba696bf29de635a9a5f6a1ba1b0e (diff)
downloadbinutils-gdb-ed60d3edd51f6c33fb0f3f09400094a1b1c2ceb2.tar.gz
sim: constify various integer readers
These functions only read from memory, so mark the pointer as const.
Diffstat (limited to 'sim/microblaze')
-rw-r--r--sim/microblaze/interp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/microblaze/interp.c b/sim/microblaze/interp.c
index 2ec223868a7..6aa02632093 100644
--- a/sim/microblaze/interp.c
+++ b/sim/microblaze/interp.c
@@ -38,7 +38,7 @@
#define target_big_endian (CURRENT_TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
static unsigned long
-microblaze_extract_unsigned_integer (unsigned char *addr, int len)
+microblaze_extract_unsigned_integer (const unsigned char *addr, int len)
{
unsigned long retval;
unsigned char *p;