aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/lex.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@cygnus.com>2000-11-06 05:35:53 +0000
committerTom Tromey <tromey@gcc.gnu.org>2000-11-06 05:35:53 +0000
commit099a51500cccdff68d8dfeec726f29b60ad1d546 (patch)
treee88453b5e6bdbc6ca750c761f042b84588f3f601 /gcc/java/lex.h
parentf83c165658cdd9d8d658426f3b066b820113d6e0 (diff)
downloadgcc-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.h2
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; \
}