diff options
author | Tom Tromey <tromey@cygnus.com> | 2000-11-06 05:35:53 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2000-11-06 05:35:53 +0000 |
commit | 099a51500cccdff68d8dfeec726f29b60ad1d546 (patch) | |
tree | e88453b5e6bdbc6ca750c761f042b84588f3f601 /gcc/java/lex.h | |
parent | f83c165658cdd9d8d658426f3b066b820113d6e0 (diff) | |
download | gcc-099a51500cccdff68d8dfeec726f29b60ad1d546.zip gcc-099a51500cccdff68d8dfeec726f29b60ad1d546.tar.gz gcc-099a51500cccdff68d8dfeec726f29b60ad1d546.tar.bz2 |
lex.h (JAVA_FLOAT_RANGE_ERROR): Typo fix.
* lex.h (JAVA_FLOAT_RANGE_ERROR): Typo fix.
* lex.c (IS_ZERO): New define.
(java_perform_atof): Error on floating point underflow.
From-SVN: r37269
Diffstat (limited to 'gcc/java/lex.h')
-rw-r--r-- | gcc/java/lex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/lex.h b/gcc/java/lex.h index b43061e..baa08c9 100644 --- a/gcc/java/lex.h +++ b/gcc/java/lex.h @@ -234,7 +234,7 @@ extern void set_float_handler PARAMS ((jmp_buf)); char msg [1024]; \ int i = ctxp->c_line->current; \ ctxp->c_line->current = number_beginning; \ - sprintf (msg, "Floating pointer literal exceeds range of `%s'", (m)); \ + sprintf (msg, "Floating point literal exceeds range of `%s'", (m)); \ java_lex_error (msg, 0); \ ctxp->c_line->current = i; \ } |