diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-10-26 23:01:21 +0545 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-10-31 21:24:39 +0545 |
commit | 5bab16fdf1775c8abd16376458c5843fbe1d4314 (patch) | |
tree | 0b41c08b25c87525ba53362fca775a7d6acb6599 /sim/common/sim-cpu.h | |
parent | ed60d3edd51f6c33fb0f3f09400094a1b1c2ceb2 (diff) | |
download | fsf-binutils-gdb-5bab16fdf1775c8abd16376458c5843fbe1d4314.zip fsf-binutils-gdb-5bab16fdf1775c8abd16376458c5843fbe1d4314.tar.gz fsf-binutils-gdb-5bab16fdf1775c8abd16376458c5843fbe1d4314.tar.bz2 |
sim: reg: constify store helper
These functions only read from memory, so mark the pointer as const.
Diffstat (limited to 'sim/common/sim-cpu.h')
-rw-r--r-- | sim/common/sim-cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/sim-cpu.h b/sim/common/sim-cpu.h index 9e09a55..2ad5667 100644 --- a/sim/common/sim-cpu.h +++ b/sim/common/sim-cpu.h @@ -31,7 +31,7 @@ typedef const char * (CPU_INSN_NAME_FN) (sim_cpu *, int); /* Types for register access functions. These routines implement the sim_{fetch,store}_register interface. */ typedef int (CPUREG_FETCH_FN) (sim_cpu *, int, unsigned char *, int); -typedef int (CPUREG_STORE_FN) (sim_cpu *, int, unsigned char *, int); +typedef int (CPUREG_STORE_FN) (sim_cpu *, int, const unsigned char *, int); /* Types for PC access functions. Some simulators require a functional interface to access the program |