diff options
author | obrien <obrien@FreeBSD.org> | 2000-11-26 01:21:09 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-11-26 01:21:09 +0000 |
commit | eb309bb4e994252581b59c0163daf4c632739c67 (patch) | |
tree | 4635bdc8572557372143f4ada386d3dfdf3b3d54 | |
parent | bf5f9966440e453c64d6cab1380dfac33542001d (diff) | |
parent | 7fbb72605a1c3bcb81f8b6bb6297ffef30f84335 (diff) | |
download | FreeBSD-src-eb309bb4e994252581b59c0163daf4c632739c67.zip FreeBSD-src-eb309bb4e994252581b59c0163daf4c632739c67.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r69180,
which included commits to RCS files with non-trunk default branches.
-rw-r--r-- | contrib/binutils/gas/config/atof-vax.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/contrib/binutils/gas/config/atof-vax.c b/contrib/binutils/gas/config/atof-vax.c index 8ba290f..76ff078 100644 --- a/contrib/binutils/gas/config/atof-vax.c +++ b/contrib/binutils/gas/config/atof-vax.c @@ -1,5 +1,6 @@ /* atof_vax.c - turn a Flonum into a VAX floating point number - Copyright (C) 1987, 1992, 93, 95, 1997 Free Software Foundation, Inc. + Copyright (C) 1987, 1992, 93, 95, 97, 98, 1999 + Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -260,7 +261,7 @@ atof_vax (str, what_kind, words) int /* 0: OK. */ flonum_gen2vax (format_letter, f, words) - char format_letter; /* One of 'd' 'f' 'g' 'h'. */ + int format_letter; /* One of 'd' 'f' 'g' 'h'. */ FLONUM_TYPE *f; LITTLENUM_TYPE *words; /* Deliver answer here. */ { @@ -511,7 +512,7 @@ md_atof (what_statement_type, literalP, sizeP) }; *sizeP = number_of_chars; - return kind_of_float ? 0 : "Bad call to md_atof()"; + return kind_of_float ? NULL : _("Bad call to md_atof()"); } /* end of atof-vax.c */ |