diff options
author | cagney <cagney@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-16 01:51:07 +0000 |
---|---|---|
committer | cagney <cagney@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-16 01:51:07 +0000 |
commit | 8d083f495bff49a08a632c2be2d50f8f7451d7ce (patch) | |
tree | 5c6e1c9bbf676db99a510a4191f0ac8fbdd92f76 /include | |
parent | 90306e5c8f050b41f278e9aa943fbc394cb97e57 (diff) | |
download | gcc-8d083f495bff49a08a632c2be2d50f8f7451d7ce.tar.gz |
Index: include/ChangeLog
2003-09-15 Andrew Cagney <cagney@redhat.com>
* floatformat.h (floatformat_to_double): Make input buffer constant.
(floatformat_from_double, floatformat_is_valid): Ditto.
Index: libiberty/ChangeLog
2003-09-15 Andrew Cagney <cagney@redhat.com>
* floatformat.c (get_field): Make "data" constant.
(floatformat_is_valid, floatformat_to_double): Make "from"
constant, fix casts.
(floatformat_from_double): Make "from" constant.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71422 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/floatformat.h | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 037dee57f92..7d727085faf 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,5 +1,10 @@ 2003-09-15 Andrew Cagney <cagney@redhat.com> + * floatformat.h (floatformat_to_double): Make input buffer constant. + (floatformat_from_double, floatformat_is_valid): Ditto. + +2003-09-15 Andrew Cagney <cagney@redhat.com> + * floatformat.h (struct floatformat): Make "exp_bias" signed. 2003-09-15 Daniel Jacobowitz <drow@mvista.com> diff --git a/include/floatformat.h b/include/floatformat.h index 1d08fd6183f..3d0fd7a87ad 100644 --- a/include/floatformat.h +++ b/include/floatformat.h @@ -113,18 +113,18 @@ extern const struct floatformat floatformat_ia64_quad_little; Store the double in *TO. */ extern void -floatformat_to_double PARAMS ((const struct floatformat *, char *, double *)); +floatformat_to_double PARAMS ((const struct floatformat *, const char *, double *)); /* The converse: convert the double *FROM to FMT and store where TO points. */ extern void floatformat_from_double PARAMS ((const struct floatformat *, - double *, char *)); + const double *, char *)); /* Return non-zero iff the data at FROM is a valid number in format FMT. */ extern int -floatformat_is_valid PARAMS ((const struct floatformat *fmt, char *from)); +floatformat_is_valid PARAMS ((const struct floatformat *fmt, const char *from)); #endif /* defined (FLOATFORMAT_H) */ |