mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 23:31:21 +08:00
* lex.c (java_lex): Check for e' or
E' after 0.
From-SVN: r55664
This commit is contained in:
parent
9cc37f69d2
commit
e75abdabb2
@ -1,3 +1,7 @@
|
||||
2002-07-22 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* lex.c (java_lex): Check for `e' or `E' after 0.
|
||||
|
||||
2002-07-21 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* lang.c (java_unsafe_for_reeval): New.
|
||||
|
@ -1023,9 +1023,10 @@ java_lex (java_lval)
|
||||
}
|
||||
else if (JAVA_ASCII_DIGIT (c))
|
||||
radix = 8;
|
||||
else if (c == '.')
|
||||
else if (c == '.' || c == 'e' || c =='E')
|
||||
{
|
||||
/* Push the '.' back and prepare for a FP parsing... */
|
||||
/* Push the '.', 'e', or 'E' back and prepare for a FP
|
||||
parsing... */
|
||||
java_unget_unicode ();
|
||||
c = '0';
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user