aboutsummaryrefslogtreecommitdiff
path: root/sim/igen
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2015-04-24 15:43:21 +0100
committerNick Clifton <nickc@redhat.com>2015-04-24 15:43:21 +0100
commitde7669bfa507d78f7abfe3d219b5aee9f346235e (patch)
tree52bf26d31dc3846dd1c2f41a03359be3afdc5c7a /sim/igen
parent63c72d1ae497cdf43db5347464a97164e720b83f (diff)
downloadfsf-binutils-gdb-de7669bfa507d78f7abfe3d219b5aee9f346235e.zip
fsf-binutils-gdb-de7669bfa507d78f7abfe3d219b5aee9f346235e.tar.gz
fsf-binutils-gdb-de7669bfa507d78f7abfe3d219b5aee9f346235e.tar.bz2
Fix typos in sim sources exposed by static analysis.
bfin PR 18273 * bfin-sim.c (decode_dsp32alu_0): Remove spurious check for s == 1. erc32 PR 18273 * exec.c (add32): Fix typo in check for overflow. igen PR 18273 * misc.c (a2i): Fix typos checking for uppercase letters.
Diffstat (limited to 'sim/igen')
-rw-r--r--sim/igen/ChangeLog6
-rw-r--r--sim/igen/misc.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/sim/igen/ChangeLog b/sim/igen/ChangeLog
index 92d7db9..9007920 100644
--- a/sim/igen/ChangeLog
+++ b/sim/igen/ChangeLog
@@ -1,3 +1,9 @@
+2015-04-24 David Binderman <dcb314@hotmail.com>
+ Nick Clifton <nickc@redhat.com>
+
+ PR 18273
+ * misc.c (a2i): Fix typos checking for uppercase letters.
+
2015-04-17 Mike Frysinger <vapier@gentoo.org>
* gen-engine.c (print_run_body): Change CIA_GET to CPU_PC_GET and
diff --git a/sim/igen/misc.c b/sim/igen/misc.c
index 71e34fb..6501352 100644
--- a/sim/igen/misc.c
+++ b/sim/igen/misc.c
@@ -102,7 +102,7 @@ a2i (const char *a)
if (strcmp (a, "true") == 0 || strcmp (a, "TRUE") == 0)
return 1;
- if (strcmp (a, "false") == 0 || strcmp (a, "false") == 0)
+ if (strcmp (a, "false") == 0 || strcmp (a, "FALSE") == 0)
return 0;
if (*a == '-')
@@ -118,7 +118,7 @@ a2i (const char *a)
a += 2;
base = 16;
}
- else if (a[1] == 'b' || a[1] == 'b')
+ else if (a[1] == 'b' || a[1] == 'B')
{
a += 2;
base = 2;