diff options
author | Ian Lance Taylor <ian@airs.com> | 1999-09-12 02:12:38 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1999-09-12 02:12:38 +0000 |
commit | 2ab9b79ef9cf161728a55edbb8b004a79a5423f0 (patch) | |
tree | 4a80ddb97ed59783989f3ab67136b7e0b30de15e /gas/config/atof-ieee.c | |
parent | 5881e4aab3f5cdc7e375f12a3feb37406b20f5b8 (diff) | |
download | gdb-2ab9b79ef9cf161728a55edbb8b004a79a5423f0.zip gdb-2ab9b79ef9cf161728a55edbb8b004a79a5423f0.tar.gz gdb-2ab9b79ef9cf161728a55edbb8b004a79a5423f0.tar.bz2 |
1999-09-11 Donn Terry <donn@interix.com>
* config/atof-ieee.c (atof_ieee): Change what_kind to int.
* config/atof-vax.c (flonum_gen2vax): Change format_letter to
int.
(md_atof): Return NULL rather than 0.
* config/tc-i386.c (md_atof): Change type to int.
Diffstat (limited to 'gas/config/atof-ieee.c')
-rw-r--r-- | gas/config/atof-ieee.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/atof-ieee.c b/gas/config/atof-ieee.c index fbf0ffb..c9bfc5b 100644 --- a/gas/config/atof-ieee.c +++ b/gas/config/atof-ieee.c @@ -160,7 +160,7 @@ make_invalid_floating_point_number (words) char * atof_ieee (str, what_kind, words) char *str; /* Text to convert to binary. */ - char what_kind; /* 'd', 'f', 'g', 'h' */ + int what_kind; /* 'd', 'f', 'g', 'h' */ LITTLENUM_TYPE *words; /* Build the binary here. */ { /* Extra bits for zeroed low-order bits. The 1st MAX_PRECISION are |