diff options
author | Nick Clifton <nickc@redhat.com> | 2007-04-21 12:50:49 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2007-04-21 12:50:49 +0000 |
commit | 2523cd0a8125bf1b1e7442a70a7c4894ae012c1c (patch) | |
tree | 7f5d213a0038035246b95b460ac55ec9bbe218f3 /gas | |
parent | c13781b849c7762655fc29e989c039ac4948e271 (diff) | |
download | gdb-2523cd0a8125bf1b1e7442a70a7c4894ae012c1c.zip gdb-2523cd0a8125bf1b1e7442a70a7c4894ae012c1c.tar.gz gdb-2523cd0a8125bf1b1e7442a70a7c4894ae012c1c.tar.bz2 |
* config/atof-vax.c (md_atof): Fix comparison inside know().
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 2 | ||||
-rw-r--r-- | gas/config/atof-vax.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 0fff41b..ff7be50 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,7 @@ 2007-04-21 Nick Clifton <nickc@redhat.com> + * config/atof-vax.c (md_atof): Fix comparison inside know(). + * config/tc-ia64.c (emit_one_bundle): Fix typo. 2007-04-21 Alan Modra <amodra@bigpond.net.au> diff --git a/gas/config/atof-vax.c b/gas/config/atof-vax.c index 7575690..3947fed 100644 --- a/gas/config/atof-vax.c +++ b/gas/config/atof-vax.c @@ -435,7 +435,7 @@ md_atof (int what_statement_type, a little-endian machine, be very careful about converting words to chars. */ number_of_chars = atof_vax_sizeof (kind_of_float); - know (number_of_chars <= MAXIMUM_NUMBER_OF_LITTLENUMS * sizeof (LITTLENUM_TYPE)); + know (number_of_chars <= (int)(MAXIMUM_NUMBER_OF_LITTLENUMS * sizeof (LITTLENUM_TYPE))); limit = words + (number_of_chars / sizeof (LITTLENUM_TYPE)); for (littlenumP = words; littlenumP < limit; littlenumP++) { |