diff options
author | Mike Frysinger <vapier@gentoo.org> | 2023-12-19 06:49:41 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2023-12-19 20:19:52 -0500 |
commit | 06f05f35856b37bc6db014d0921638932dd5a97a (patch) | |
tree | abb2f4f63b37e206f091a738de7d6e2316a8f1d5 /sim/frv | |
parent | 90bfe9e2b42e430e2cc4b05638d6dab6b9351440 (diff) | |
download | fsf-binutils-gdb-06f05f35856b37bc6db014d0921638932dd5a97a.zip fsf-binutils-gdb-06f05f35856b37bc6db014d0921638932dd5a97a.tar.gz fsf-binutils-gdb-06f05f35856b37bc6db014d0921638932dd5a97a.tar.bz2 |
sim: frv: enable warnings in memory.c
Fix one minor pointer-sign warning to enable warnings in general
for this file. Reading the data as signed and then returning it
as unsigned should be functionally the same in this case.
Diffstat (limited to 'sim/frv')
-rw-r--r-- | sim/frv/local.mk | 1 | ||||
-rw-r--r-- | sim/frv/memory.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/sim/frv/local.mk b/sim/frv/local.mk index fab1c5f..e494039 100644 --- a/sim/frv/local.mk +++ b/sim/frv/local.mk @@ -19,7 +19,6 @@ AM_CPPFLAGS_%C% = $(SIM_FRV_TRAPDUMP_FLAGS) ## Some modules don't build cleanly yet. -AM_CFLAGS_%C%_memory.o = -Wno-error AM_CFLAGS_%C%_sem.o = -Wno-error nodist_%C%_libsim_a_SOURCES = \ diff --git a/sim/frv/memory.c b/sim/frv/memory.c index 062eeae..92644ac 100644 --- a/sim/frv/memory.c +++ b/sim/frv/memory.c @@ -670,7 +670,7 @@ frvbf_read_imem_USI (SIM_CPU *current_cpu, PCADDR vpc) if (GET_HSR0_ICE (hsr0)) { FRV_CACHE *cache; - USI value; + SI value; /* We don't want this to show up in the cache statistics. That read is done in frvbf_simulate_insn_prefetch. So read the cache or memory |