diff options
author | Nick Clifton <nickc@redhat.com> | 2007-10-17 16:45:56 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2007-10-17 16:45:56 +0000 |
commit | 499ac353610f24006acf82c32503d8d15d0f278c (patch) | |
tree | a85388693f1bb562345a7f7a28875fd962bd16f0 /gas/config/atof-vax.c | |
parent | 25b07cd9c40077c076d68f9e7d5a113828fbebbf (diff) | |
download | gdb-499ac353610f24006acf82c32503d8d15d0f278c.zip gdb-499ac353610f24006acf82c32503d8d15d0f278c.tar.gz gdb-499ac353610f24006acf82c32503d8d15d0f278c.tar.bz2 |
Remove duplicate definitions of the md_atof() function
Diffstat (limited to 'gas/config/atof-vax.c')
-rw-r--r-- | gas/config/atof-vax.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/config/atof-vax.c b/gas/config/atof-vax.c index fbae8ca..e012526 100644 --- a/gas/config/atof-vax.c +++ b/gas/config/atof-vax.c @@ -389,9 +389,9 @@ flonum_gen2vax (int format_letter, /* One of 'd' 'f' 'g' 'h'. */ #define MAXIMUM_NUMBER_OF_LITTLENUMS 8 /* For .hfloats. */ char * -md_atof (int what_statement_type, - char *literalP, - int *sizeP) +vax_md_atof (int what_statement_type, + char *literalP, + int *sizeP) { LITTLENUM_TYPE words[MAXIMUM_NUMBER_OF_LITTLENUMS]; char kind_of_float; @@ -447,5 +447,5 @@ md_atof (int what_statement_type, number_of_chars = 0; *sizeP = number_of_chars; - return kind_of_float ? NULL : _("Bad call to md_atof()"); + return kind_of_float ? NULL : _("Unrecognized or unsupported floating point constant"); } |