diff options
author | Nick Clifton <nickc@redhat.com> | 2015-04-29 16:02:02 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2015-04-29 16:02:02 +0100 |
commit | 0a13382c8e708fd9eb15dbc81cedc35e6670090c (patch) | |
tree | 9fd21d2d6d7d18ce08e5c4d1f74cf91f57fb631a /sim/ppc | |
parent | Allow passing fd == NULL to exec_file_find and solib_find (diff) | |
download | binutils-gdb-0a13382c8e708fd9eb15dbc81cedc35e6670090c.tar.gz binutils-gdb-0a13382c8e708fd9eb15dbc81cedc35e6670090c.tar.bz2 binutils-gdb-0a13382c8e708fd9eb15dbc81cedc35e6670090c.zip |
Fix problems in the sim sources discovered by running the cppcheck static analysis tool.
erc32 PR 18273
* sis.c (main): Remove unreachable code.
m68hc11 * gencode.c (gen_fetch_operands): Remove unreachable code.
ppc * hw_htab.c (htab_map_binary): Fix overlap check.
common * sim-fpu.c (INLINE_SIM_FPU): Fix static analysis warning by
increasing parenthesis around casts to signed values.
Diffstat (limited to 'sim/ppc')
-rw-r--r-- | sim/ppc/ChangeLog | 5 | ||||
-rw-r--r-- | sim/ppc/hw_htab.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/sim/ppc/ChangeLog b/sim/ppc/ChangeLog index cd185ba5e6a..1297df17a23 100644 --- a/sim/ppc/ChangeLog +++ b/sim/ppc/ChangeLog @@ -1,3 +1,8 @@ +2015-04-29 Nick Clifton <nickc@redhat.com> + + PR 18273 + * hw_htab.c (htab_map_binary): Fix overlap check. + 2015-04-13 Mike Frysinger <vapier@gentoo.org> * Makefile.in (version.o): Change to using create-version.sh from gdb. diff --git a/sim/ppc/hw_htab.c b/sim/ppc/hw_htab.c index c49b3231ffe..cf275ff7025 100644 --- a/sim/ppc/hw_htab.c +++ b/sim/ppc/hw_htab.c @@ -549,7 +549,7 @@ htab_map_binary(device *me, if ((sizes.text_base <= sizes.data_base && sizes.text_bound >= sizes.data_bound) || (sizes.data_base <= sizes.text_base - && sizes.data_bound >= sizes.data_bound) + && sizes.data_bound >= sizes.text_bound) || (sizes.text_bound > sizes.data_base && sizes.text_bound <= sizes.data_bound) || (sizes.text_base >= sizes.data_base |