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/Makefile.in | |
parent | 90bfe9e2b42e430e2cc4b05638d6dab6b9351440 (diff) | |
download | gdb-06f05f35856b37bc6db014d0921638932dd5a97a.zip gdb-06f05f35856b37bc6db014d0921638932dd5a97a.tar.gz 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/Makefile.in')
-rw-r--r-- | sim/Makefile.in | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sim/Makefile.in b/sim/Makefile.in index 8d3bfaa..b07641f 100644 --- a/sim/Makefile.in +++ b/sim/Makefile.in @@ -2273,7 +2273,6 @@ testsuite_common_CPPFLAGS = \ @SIM_ENABLE_ARCH_examples_TRUE@ $(SIM_COMMON_LIBS) @SIM_ENABLE_ARCH_frv_TRUE@AM_CPPFLAGS_frv = $(SIM_FRV_TRAPDUMP_FLAGS) -@SIM_ENABLE_ARCH_frv_TRUE@AM_CFLAGS_frv_memory.o = -Wno-error @SIM_ENABLE_ARCH_frv_TRUE@AM_CFLAGS_frv_sem.o = -Wno-error @SIM_ENABLE_ARCH_frv_TRUE@nodist_frv_libsim_a_SOURCES = \ @SIM_ENABLE_ARCH_frv_TRUE@ frv/modules.c |